[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ParseContext.BaseColumn

BaseColumn Property

BaseColumn

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.

Declaration
public int BaseColumn { get; set; }
Public Property BaseColumn As Integer
Examples
ParseContext context = new ParseContext();
context.BaseColumn = 7;
int baseColumn = context.BaseColumn;