AGENT.Contrib.Drawing.Point.Point C# (CSharp) Method

Point() public method

Initializes a new instance of the System.Drawing.Point class with the specified coordinates.
public Point ( int x, int y ) : System
x int The horizontal position of the point.
y int The vertical position of the point.
return System
        public Point(int x = 0, int y = 0)
        {
            m_X = x;
            m_Y = y;
        }

Same methods

Point::Point ( Size sz ) : System