![]() |
v2.40
|
|
Represents a property container. More...
Public Member Functions | |
HRESULT | Contains ([in] GUID propertyId, [out, retval] VARIANT_BOOL *pContains) |
Indicates whether the object has the property specified by the identifier. | |
HRESULT | ContainsS ([in] BSTR propertyId, [out, retval] VARIANT_BOOL *pContains) |
Same as IPropertyContainer::Contains, but accepting GUID as a string. | |
HRESULT | Get ([in] GUID propertyId, [out, retval] IProperty **ppProperty) |
Returns the property specified by the identifier. | |
HRESULT | GetIds ([out, retval] IGuidCollection **ppIds) |
Returns the collection of identifiers of all assigned properties. | |
HRESULT | GetS ([in] BSTR propertyId, [out, retval] IProperty **ppProperty) |
Same as IPropertyContainer::Get, but accepting GUID as a string. | |
Represents a property container.
Using this interface you can access properties of a model object. It can be obtained from a model object via the IModelObject::GetProperties() method or as an additional interface from IEntity interface.
HRESULT Contains | ( | [in] GUID | propertyId, |
[out, retval] VARIANT_BOOL * | pContains ) |
Indicates whether the object has the property specified by the identifier.
[in] | propertyId | The identifier of the property. |
[out] | pContains | TRUE if the object supports the property; otherwise returns FALSE. |
HRESULT Get | ( | [in] GUID | propertyId, |
[out, retval] IProperty ** | ppProperty ) |
Returns the property specified by the identifier.
[in] | propertyId | The identifier of the property. |
[out] | ppProperty | The property of the object, or nullptr if the object doesn't have the requested property. |