SWICFFITests.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)
        {
            Left = left;
            Top = top;
            Right = right;
            Bottom = bottom;
        }

Same methods

RECT::RECT ( System r ) : System