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:
Dim Brightness As VCDPropertyItem Set Brightness = ICImagingControl1.VCDPropertyItems.FindItem(VCDID_Brightness)
Introduced in IC Imaging Control 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 | ||
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. |
||