C# 클래스 ZForge.Controls.XPTable.Win32.POINT

파일 보기 프로젝트 열기: zhuangyy/Motion

공개 프로퍼티들

프로퍼티 타입 설명
x int
y int

공개 메소드들

메소드 설명
FromPoint ( Point p ) : POINT

Creates a new POINT struct from the specified Point

POINT ( int x, int y ) : System

Creates a new RECT struct with the specified x and y coordinates

ToPoint ( ) : Point

Returns a Point with the same x and y coordinates as the POINT

메소드 상세

FromPoint() 공개 정적인 메소드

Creates a new POINT struct from the specified Point
public static FromPoint ( Point p ) : POINT
p Point The Point to create the POINT from
리턴 POINT

POINT() 공개 메소드

Creates a new RECT struct with the specified x and y coordinates
public POINT ( int x, int y ) : System
x int The x-coordinate of the point
y int The y-coordinate of the point
리턴 System

ToPoint() 공개 메소드

Returns a Point with the same x and y coordinates as the POINT
public ToPoint ( ) : Point
리턴 Point

프로퍼티 상세

x 공개적으로 프로퍼티

Specifies the x-coordinate of the point
public int x
리턴 int

y 공개적으로 프로퍼티

Specifies the y-coordinate of the point
public int y
리턴 int