ImageEn, unit iexOtherClasses

TIERFBClient.UnlockFrameBuffer

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.


Example

rfb.LockFrameBuffer;
try
  ImageEnMView1.SetImage( imageIndex, rfb.FrameBuffer );
finally
  rfb.UnlockFrameBuffer;
end;