[]
Gets or sets a value indicating whether references are interpreted in R1C1 style.
Use this property together with BaseRow and BaseColumn
when the parse context is used for Parse(string, ParseContext).
If this property returns true, formula references are parsed as R1C1-style references;
otherwise, A1-style references are used.
public bool IsR1C1 { get; set; }
Public Property IsR1C1 As Boolean
ParseContext context = new ParseContext();
context.BaseRow = 1;
context.BaseColumn = 4;
context.IsR1C1 = true;
bool isR1C1 = context.IsR1C1;