C# Класс ZForge.Controls.XPTable.Win32.POINT

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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