[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.TableItemType

TableItemType Enum

Represents a part of a table.

This class identifies specific table sections used in structured references, such as headers, data, and totals. It also supports combining multiple table parts by using the bitwise OR operator, such as TableItemType.Headers | TableItemType.Data.

Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
[Flags]
public enum TableItemType
<Flags>
Public Enum TableItemType
Examples
TableItemNode tableItem = new TableItemNode("Sales", TableItemType.Headers, "Amount");
TableItemType itemType = tableItem.ItemType;
string columnName = tableItem.ColumnFrom;

Fields

Name Description
All

[#All] The headers, data and the data part.

Data

[#Data] Specifies the data rows part of a table structured reference.

Headers

[#Headers] Specifies the header row part of a table structured reference.

None

Specifies that no table item specifier is used.

ThisRow

@[Column_Name] Specifies the current row in a table structured reference.

Totals

[#Totals] Specifies the totals part of a table reference.