DeviceFrameRates.Count Property

Returns the number of frame rates in the collection.
Syntax:
Public Count As Long
Limitations:

Read only.

Sample:

This example determines whether frame rates are available:

Dim RateCol As DeviceFrameRates
Set RateCol = ICImagingControl1.DeviceFrameRates
If RateCol.Count > 0 then
    ' Do something.
else
    ' No frame rates available.
End If
End Sub
See also: DeviceFrameRates, DeviceFrameRates.Item

<< DeviceFrameRates