VCDPropertyItem.Find Method

Finds the according VCDPropertyElement and VCDPropertyInterface
Syntax:
[C#]
public TInterface Find<TInterface>( Guid ElementID ) where TInterface : VCDPropertyInterface; public VCDPropertyElement Find( Guid ElementID ); public VCDPropertyInterface Find( Guid ElementID, Guid interfaceID );
Parameter Description
TInterface

Specifies the interface type to be returned. This can be e.g. VCDRangeProperty.

ElementID

Specifies the element identifier of the VCDPropertyElement to be returned.

interfaceID

Specifies the interface identifier of the VCDPropertyInterface to be returned.

Return Value:

If the element or interface was not found, the function returns Nothing or null respectively.

See also: VCDPropertyItem, VCDPropertyElement, VCDPropertyInterface

<< VCDPropertyItem