[]
Gets or sets the 0-based row location of the formula.
This value identifies the base row used by UnParseContext when converting a FormulaSyntaxTree back to formula text. It is typically used together with BaseColumn for references whose text depends on the formula location, such as R1C1-style references.
public int BaseRow { get; set; }
Public Property BaseRow As Integer
UnParseContext context = new UnParseContext();
context.BaseRow = 1;
int baseRow = context.BaseRow;