ImageBuffer.Locked Property

Returns True if the ImageBuffer is locked.
Syntax:
Public Locked Boolean
Limitations:

Read only.

Sample:

This example shows how to determine whether an ImageBuffer is locked:

Dim Buf As ImageBuffer
Set Buf = ICImagingControl1.ImageBuffer.Item(1)
If Buf.Locked Then
    ' buffer is locked
Else
    ' buffer is not locked
End If
See also: ImageBuffer, ImageBuffer.Unlock, ImageBuffer.ForceUnlock, ImageBuffer.Lock

<< ImageBuffer