[]
Gets or sets the end column of the table column range.
For a TableItemNode that represents a range of columns, this property returns the
last column name in that range. If the node represents a single column reference, this property
returns null.
public string ColumnTo { get; set; }
Public Property ColumnTo As String
FormulaSyntaxTree syntaxTree = FormulaSyntaxTree.Parse("DeptSales[[#Headers],[#Data],[ComPct]:[Column3]]");
GrapeCity.Documents.Excel.Expressions.TableItemNode tableItem = (GrapeCity.Documents.Excel.Expressions.TableItemNode)syntaxTree.Root;
string columnTo = tableItem.ColumnTo;