[]
Gets the 0-based column location of the formula.
This value is used by ParseContext when parsing formulas that depend on the formula's position, such as relative references.
public int BaseColumn { get; set; }
Public Property BaseColumn As Integer
ParseContext context = new ParseContext();
context.BaseColumn = 7;
int baseColumn = context.BaseColumn;