ITransformProperties Interface

The ITransformProperties interface is the collection of child properties (XML elements) of the current property (XML element). Each property, like the XML element it represents, can hold zero or more child properties. Point elements are not retrieved in this way, but by calling ITransformProperty::get_Point. To get this interface, call QueryInterface on an ITransformProperty interface. If the property has no children, this interface will still be retrieved, but get_PropertyCount will return zero.

In addition to the methods inherited from IUnknown, the ITransformProperties interface exposes the following methods.

Method Description
Clone Creates a copy of the current ITransformProperties interface.
CloneTo Copies the current ITransformProperties interface into a submitted ITransformProperties interface.
get_Name Retrieves the name of the current property holding the collection of child properties.
get_PropertyByIndex Retrieves a property in the collection by index.
get_PropertyByName Retrieves a property in the collection by name.
get_PropertyCount Retrieves a count of properties in the collection.

See Also