VCDPropertyElements.FindElement Method

Searches the collection for a VCDPropertyElement with a given element id.
Syntax:
[C#]
public VCDPropertyElement FindElement( string ElementID );
[C#]
public VCDPropertyElement FindElement( Guid ElementID );
Parameter Description
ElementID

Specifies the element identifier of the VCDPropertyElement to be returned.

Return Value:

If the collection contains an VCDPropertyElement with an element identifier equal to the passed element identifier, the FindElement method returns this VCDPropertyElement.

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

Remarks:

The element identifiers are GUIDs. A list of can be found in Standard Element identifiers list.

The Basic Use of VCD Properties article in the Programmer's Guide shows how to use the element identifiers.

See also: VCDPropertyElements, VCDPropertyElement, Standard Element identifiers, Basic Use of VCD Properties

<< VCDPropertyElements