ImageEn, unit iexOtherClasses

TIERFBClient.ScreenPixelFormat

TIERFBClient.ScreenPixelFormat

Declaration

property ScreenPixelFormat: TIERFBPixelFormat;

Description

Specifies connection pixel format (this is not the framebuffer pixelformat, which is always 24 bit RGB).
Applications must set this property before start the connection.

Default: ierfbRGB32

Example

with TIERFBClient.Create do
begin
  rfb.ScreenPixelFormat := ierfbPalette256;
  rfb.Connect('A_VNC_Server');
  ...
end;