C# Class Andwho.Windows.Win32.RECT

Datei anzeigen Open project: JimmyFung/DesktopHelper

Public Properties

Property Type Description
Bottom int
Left int
Right int
Top int

Public Methods

Method Description
RECT ( Rectangle rect ) : System

初始化 Andwho.Windows.Win32.RECT 结构的新实例。

RECT ( int left, int top, int right, int bottom ) : System

初始化 Andwho.Windows.Win32.RECT 结构的新实例。

Method Details

RECT() public method

初始化 Andwho.Windows.Win32.RECT 结构的新实例。
public RECT ( Rectangle rect ) : System
rect System.Drawing.Rectangle System.Drawing.Rectangle 对象
return System

RECT() public method

初始化 Andwho.Windows.Win32.RECT 结构的新实例。
public RECT ( int left, int top, int right, int bottom ) : System
left int 此 RECT 结构左边缘的 x 坐标。
top int 此 RECT 结构上边缘的 y 坐标。
right int x 坐标,该坐标是此 RECT 结构的 X 与 Width 属性值之和。
bottom int y 坐标,该坐标是此 RECT 结构的 Y 与 Height 属性值之和。
return System

Property Details

Bottom public_oe property

获取 y 坐标,该坐标是此 RECT 结构的 Y 与 Height 属性值之和。
public int Bottom
return int

Left public_oe property

获取此 RECT 结构左边缘的 x 坐标。
public int Left
return int

Right public_oe property

获取 x 坐标,该坐标是此 RECT 结构的 X 与 Width 属性值之和。
public int Right
return int

Top public_oe property

获取此 RECT 结构上边缘的 y 坐标。
public int Top
return int