IInterfaceInfo.Properties Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the properties of the interface.
public:
property System::Object ^ Properties { System::Object ^ get(); };
public:
property Platform::Object ^ Properties { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(1610743814)]
public object Properties { [System.Runtime.InteropServices.DispId(1610743814)] get; }
[<System.Runtime.InteropServices.DispId(1610743814)>]
[<get: System.Runtime.InteropServices.DispId(1610743814)>]
member this.Properties : obj
Public ReadOnly Property Properties As Object
Property Value
The properties of the interface.
- Attributes
Examples
// Taken from the Visual C++ Member Variable wizard
function PopulateCategories(bActiveXControl)
{
var nIndex = 0;
if (bActiveXControl)
{
var strTypeLib = window.external.GetActiveXControlTypeLib(CONTROL_TYPE.text);
var oTypeLib = oTypeLibs.item(strTypeLib);
var oEnums = oTypeLib.Enums;
var nEnumCount = oEnums.Count;
var oInterfaces = oTypeLib.Interfaces;
var nCount = oInterfaces.Count;
var bDefaultInterface = false;
var oInterface;
for (n = 1; n <= nCount; n++)
{
oInterface = oInterfaces.Item(n);
if (oInterface.CoClass != CONTROL_TYPE.text)
continue;
if (oInterface.Default == true)
{
bDefaultInterface = true;
break;
}
}
if (bDefaultInterface == true)
{
var oFuncs = oInterface.Properties;
var funcCount = oFuncs.Count;
for (j = 1; j <= funcCount; j++)
{
oFunc = oFuncs.Item(j);
var strType = oFunc.Type;
var strName = oFunc.Name;
var oOption = document.createElement("OPTION");
oOption.value = strName;
oOption.text = strName;
oOption.ID = strName.toUpperCase();
oCategories.add(oOption);
g_aoControlProperties[nIndex] = strName;
g_aoControlPropertyDispids[nIndex] = oFunc.DispID;
if (IsTypeEnum(strType, oEnums, nEnumCount))
strType = "long";
g_aoControlPropertyTypes[nIndex] = strType;
if (!IsListed(strType))
VariableType.AddItem(strType);
nIndex++;
}
}
}
g_aoControlProperties.length = nIndex + 1;
g_aoControlPropertyTypes.length = nIndex + 1;
}