C# 클래스 Andwho.Windows.Win32.RECT

파일 보기 프로젝트 열기: JimmyFung/DesktopHelper

공개 프로퍼티들

프로퍼티 타입 설명
Bottom int
Left int
Right int
Top int

공개 메소드들

메소드 설명
RECT ( Rectangle rect ) : System

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

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

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

메소드 상세

RECT() 공개 메소드

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

RECT() 공개 메소드

初始化 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 属性值之和。
리턴 System

프로퍼티 상세

Bottom 공개적으로 프로퍼티

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

Left 공개적으로 프로퍼티

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

Right 공개적으로 프로퍼티

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

Top 공개적으로 프로퍼티

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