ARCed.Scintilla.PrintRectangle.PrintRectangle C# (CSharp) Method

PrintRectangle() public method

public PrintRectangle ( int iLeft, int iTop, int iRight, int iBottom ) : System.Runtime.InteropServices
iLeft int
iTop int
iRight int
iBottom int
return System.Runtime.InteropServices
        public PrintRectangle(int iLeft, int iTop, int iRight, int iBottom)
        {
            this.Left = iLeft;
            this.Top = iTop;
            this.Right = iRight;
            this.Bottom = iBottom;
        }
PrintRectangle