AviCompressors is a collection of AviCompressor objects. An AviCompressors collection is used to obtain a list of available avi compressors (codecs). The ICImagingControl.AviCompressors property returns an AviCompressors collection.
This example shows how to fill a combo box with all available avi compressors.
Dim AviCompCol As AviCompressors Dim AviComp As AviCompressor Set AviCompCol = ICImagingControl1.AviCompressors For Each AviComp In AviCompCol cboAviCompressorComboBox.AddItem AviComp.Name Next
Property | Description | ||
Count | Returns the count of AviCompressor objects in the collection. |
||
Item | Returns the AviCompressor at the specified position. |
||
Method | Description | ||
FindIndex | Searches the collection for a given string. The string contains the name of a codec. |
||