C# Class Hawkeye.WinApi.RECT

Mostra file Open project: odalet/Hawkeye2 Class Usage Examples

Public Properties

Property Type Description
Bottom int
Left int
Right int
Top int

Public Methods

Method Description
FromRectangle ( Rectangle rectangle ) : RECT
RECT ( int left, int top, int right, int bottom ) : System

Initializes a new instance of the RECT struct.

ToRectangle ( ) : Rectangle

Method Details

FromRectangle() public static method

public static FromRectangle ( Rectangle rectangle ) : RECT
rectangle System.Drawing.Rectangle
return RECT

RECT() public method

Initializes a new instance of the RECT struct.
public RECT ( int left, int top, int right, int bottom ) : System
left int The left coordinate.
top int The top coordinate.
right int The right coordinate.
bottom int The bottom coordinate.
return System

ToRectangle() public method

public ToRectangle ( ) : Rectangle
return System.Drawing.Rectangle

Property Details

Bottom public_oe property

public int Bottom
return int

Left public_oe property

public int Left
return int

Right public_oe property

public int Right
return int

Top public_oe property

public int Top
return int