TOAPI.Kernel32.COORD.COORD C# (CSharp) Method

COORD() public method

public COORD ( short x, short y ) : System
x short
y short
return System
        public COORD(short x, short y)
        {
            X = x;
            Y = y;
        }
    }
COORD