[]
Gets or sets the 0-based column location of the formula.
This value is used by UnParseContext when converting a FormulaSyntaxTree to formula text, especially for references whose text depends on the formula position, such as R1C1-style references.
public int BaseColumn { get; set; }
Public Property BaseColumn As Integer
UnParseContext context = new UnParseContext();
context.BaseColumn = 7;
int baseColumn = context.BaseColumn;