This class contains a collection of all VCDPropertyItem objects that are supported by the currently opened device.
The VCDPropertyItems class provides methods to search a VCDPropertyItem, VCDPropertyElement or VCDPropertyInterface. In addition, a VCDCategoryMap can be optained from the collection that maps the individual properties to categories.
This samples demonstrates how to retrieve the property brightness from the VCDPropertyItems collection:
[C#]
TIS.Imaging.VCDPropertyItem brightness = icImagingControl1.VCDPropertyItems.FindItem( TIS.Imaging.VCDGUIDs.VCDID_Brightness );
Namespace: TIS.Imaging
Introduced in version 2.0
Property | Description | ||
CategoryMap | The CategoryMap property returns a VCDCategoryMap object. |
||
Count | Returns the number of VCDPropertyItems supported by the current video capture device. |
||
Item | Returns the VCDPropertyItem at the specified index. |
||
Method | Description | ||
Find | This method returns the VCDPropertyInterface that is referred by the passed item GUID, element GUID and interface type. The interface type is specified by generic type argument or the type of the out parameter. |
||
FindElement | This method returns the VCDPropertyElement that is referred by the passed identifier string. |
||
FindInterface | This method returns the VCDPropertyInterface that is referred by the passed identifier string. |
||
FindItem | Returns the VCDPropertyItem that is referred by the passed identifier string. |
||
Load | This method sets all property values to the values specified in the passed string. |
||
Save | This method returns a string with the current values of all property items in this collection. |
||
Supported | This method returns, whether the specified property item is supported by the current video capture device. |
||
Update | Updates the property values of all VCDPropertyItems in this collection with the property values of the current video capture device. |
||