Position.Position C# (CSharp) Method

Position() public method

public Position ( int left, int width, int top, int height )
left int
width int
top int
height int
    public Position(int left, int width, int top, int height)
    {
        this.Left = left;
        this.Height = height;
        this.Top = top;
        this.Width = width;
    }
Position