ImageEn, unit iexOtherClasses |
|
TIERFBClient.UnlockFrameBuffer
Declaration
procedure UnlockFrameBuffer;
Description
Unlocks frame buffer and cursor bitmap, locked by
LockFrameBuffer.
Applications could prevent frame buffer updates just setting
Suspended = true, which does not freeze the connection.
rfb.LockFrameBuffer;
try
ImageEnMView1.SetImage( imageIndex, rfb.FrameBuffer );
finally
rfb.UnlockFrameBuffer;
end;