AviCompressors.Count Property

Returns the count of AviCompressor objects in the collection.
Syntax:
Public Count As Long
Limitations:

Read only.

Remarks:

How to use AVI compressors is shown in the Capturing an AVI File sample.

Sample:

This example determines whether one or more AVI compressors is available.

Dim AviCompCol As AviCompressors
Set AviCompCol = ICImagingControl1.AviCompressors
If AviCompCol.Count > 0 Then
    ' do something
Else
    ' no AVI compressors available
End If
See also: AviCompressors, AviCompressor, AviCompressors.Item, AviCompressors.FindIndex

<< AviCompressors