C# Class RemoteViewing.Vnc.FramebufferChangedEventArgs

Provides data for the VncClient.FramebufferChanged event.
Inheritance: System.EventArgs
Exibir arquivo Open project: qmfrederik/remoteviewing Class Usage Examples

Public Methods

Method Description
FramebufferChangedEventArgs ( IEnumerable rectangles ) : System

Initializes a new instance of the FramebufferChangedEventArgs class.

GetRectangle ( int index ) : VncRectangle

Gets one of the changed regions.

Method Details

FramebufferChangedEventArgs() public method

Initializes a new instance of the FramebufferChangedEventArgs class.
public FramebufferChangedEventArgs ( IEnumerable rectangles ) : System
rectangles IEnumerable The bounding rectangles of the changed regions.
return System

GetRectangle() public method

Gets one of the changed regions.
public GetRectangle ( int index ) : VncRectangle
index int The index of the changed region. The first region has an index of 0.
return VncRectangle