MS.Win32.NativeMethods.RECT.RECT C# (CSharp) Method

RECT() public method

public RECT ( int left, int top, int right, int bottom ) : System
left int
top int
right int
bottom int
return System
            public RECT(int left, int top, int right, int bottom)
            {
                this.left = left;
                this.top = top;
                this.right = right;
                this.bottom = bottom;
            }
NativeMethods.RECT