Struct Point
Point class.
Namespace: Cosmos.System.Graphics
Assembly: Cosmos.System2.dll
Syntax
public struct Point
Constructors
| Improve this Doc View SourcePoint(Int32, Int32)
Create new instance of Point class.
Declaration
public Point(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | x | x coordinate. |
System.Int32 | y | y coordinate. |
Properties
| Improve this Doc View SourceX
Get and set x coordinate.
Declaration
public int X { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Y
Get and set y coordinate.
Declaration
public int Y { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |