[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.TableItemNode.TableName

TableName Property

TableName

Gets or sets the name of the table.

Use this property to retrieve the table name stored in the current TableItemNode.

Declaration
public string TableName { get; set; }
Public Property TableName As String
Examples
FormulaSyntaxTree syntaxTree = FormulaSyntaxTree.Parse("DeptSales[[#Headers],[#Data],[ComPct]]");
GrapeCity.Documents.Excel.Expressions.TableItemNode tableItem = (GrapeCity.Documents.Excel.Expressions.TableItemNode)syntaxTree.Root;
string tableName = tableItem.TableName;