List of the properties associated with the element type.
[Visual Basic 6.0] Property Properties As INgProperties
[Visual Basic .NET] Public ReadOnly Property Properties As INgProperties
[C#] public INgProperties Properties {get;}
[Java] public INgProperties getProperties() throws IOException, AutomationException
[C++] HRESULT get_Properties( INgProperties** pVal );
All properties defined at the element type level are returned, those that are in relation with an attribute as those that have no related attribute. If the element type is not a group and inherits from another element type, the Properties list also contains all the inherited properties. Even if the element type inherits from another element type, if the element type is a group, the Properties list only contains the properties defined for the element type.
Here is a sample call of the Properties property:
Dim pElementType As INgElementType
Dim pElementTypeProperties As INgProperties
...
Set pElementTypeProperties = pElementType.Properties
INgElementType Interface | INgElementType.AssociatedProperties Property