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();
        }