VCDPropertyElements

This class contains a collection of VCDPropertyElement objects.

Example

This example lists all VCDPropertyItems and VCDPropertyElements in the debug output window.

[C#]
// In order to enable tracing, the line "#define TRACE" must inserted at the very // beginning of the source code. foreach( VCDPropertyItem PropertyItem in ICImagingControl1.VCDPropertyItems ) { Trace.WriteLine(PropertyItem.Name); foreach( VCDPropertyElement PropertyElement in PropertyItem.Elements ) { Trace.WriteLine(" " + PropertyElement.Name); } }

Information

    Namespace: TIS.Imaging
    Introduced in version 2.0

Properties

Property Description
Count

Returns the number of elements in the VCDPropertyElements collection.

Item

Returns the VCDPropertyElement at the specified position.

Methods

Method Description
FindElement

Searches the collection for a VCDPropertyElement with a given element id.

FindInterface

This method returns the according VCDPropertyInterface.

<< Classes