ARCed.Scintilla.RECT.RECT C# (CSharp) 메소드

RECT() 공개 메소드

public RECT ( int left_, int top_, int right_, int bottom_ ) : System
left_ int
top_ int
right_ int
bottom_ int
리턴 System
        public RECT(int left_, int top_, int right_, int bottom_)
        {
            this.Left = left_;
            this.Top = top_;
            this.Right = right_;
            this.Bottom = bottom_;
        }