[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.UnParseContext.BaseColumn

BaseColumn Property

BaseColumn

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.

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