ARCed.Scintilla.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_;
        }