[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.TableItemNode.ColumnTo

ColumnTo Property

ColumnTo

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.

Declaration
public string ColumnTo { get; set; }
Public Property ColumnTo As String
Examples
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;