Alsing.SourceCode.TextRange.SetBounds C# (CSharp) 메소드

SetBounds() 공개 메소드

The end column of the range
public SetBounds ( int firstColumn, int firstRow, int lastColumn, int lastRow ) : void
firstColumn int
firstRow int
lastColumn int
lastRow int
리턴 void
        public void SetBounds(int firstColumn, int firstRow, int lastColumn, int lastRow)
        {
            this.firstColumn = firstColumn;
            this.firstRow = firstRow;
            this.lastColumn = lastColumn;
            this.lastRow = lastRow;
            OnChange();
        }