C# Class Dt.CalcEngine.Expressions.CalcBangCellExpression

Represents a cell reference on current sheet expression.
Inheritance: Dt.CalcEngine.Expressions.CalcCellExpression
Mostrar archivo Open project: Daoting/dt

Public Methods

Method Description
CalcBangCellExpression ( int row, int column ) : System

Initializes a new instance of the T:Dt.CalcEngine.Expressions.CalcCellExpression class.

CalcBangCellExpression ( int row, int column, bool rowRelative, bool columnRelative ) : System

Initializes a new instance of the T:Dt.CalcEngine.Expressions.CalcCellExpression class.

Offset ( int row, int column, bool offsetAbsolute = false, bool offsetRelative = true ) : Dt.CalcEngine.Expressions.CalcExpression

Get a new expression with specific offset.

Method Details

CalcBangCellExpression() public method

Initializes a new instance of the T:Dt.CalcEngine.Expressions.CalcCellExpression class.
public CalcBangCellExpression ( int row, int column ) : System
row int Row coordinate of cell.
column int Column coordinate of cell.
return System

CalcBangCellExpression() public method

Initializes a new instance of the T:Dt.CalcEngine.Expressions.CalcCellExpression class.
public CalcBangCellExpression ( int row, int column, bool rowRelative, bool columnRelative ) : System
row int Row coordinate of cell.
column int Column coordinate of cell.
rowRelative bool Whether row coordinate is relative.
columnRelative bool Whether the column coordinate is relative.
return System

Offset() public method

Get a new expression with specific offset.
public Offset ( int row, int column, bool offsetAbsolute = false, bool offsetRelative = true ) : Dt.CalcEngine.Expressions.CalcExpression
row int the row offset
column int the column offset
offsetAbsolute bool true if offset the absolute indexes.
offsetRelative bool true if offset the relative indexes.
return Dt.CalcEngine.Expressions.CalcExpression