AuraPhotoViewer.ResizeableWindow.POINT.POINT C# (CSharp) Method

POINT() public method

Construct a point of coordinates (x,y).
public POINT ( int x, int y ) : System
x int
y int
return System
            public POINT(int x, int y)
            {
                this.x = x;
                this.y = y;
            }
ResizeableWindow.POINT