C# Class Hawkeye.WinApi.POINT

Exibir arquivo Open project: odalet/Hawkeye2 Class Usage Examples

Public Properties

Property Type Description
X int
Y int

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified System.Object is equal to this instance.

FromPoint ( Point pt ) : POINT
GetHashCode ( ) : int

Returns a hash code for this instance.

POINT ( int x, int y ) : System
ToPoint ( ) : Point
ToString ( ) : string

Method Details

Equals() public method

Determines whether the specified System.Object is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
return bool

FromPoint() public static method

public static FromPoint ( Point pt ) : POINT
pt Point
return POINT

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int

POINT() public method

public POINT ( int x, int y ) : System
x int
y int
return System

ToPoint() public method

public ToPoint ( ) : Point
return Point

ToString() public method

public ToString ( ) : string
return string

Property Details

X public_oe property

public int X
return int

Y public_oe property

public int Y
return int