[]
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.
[Flags]
public enum TableItemType
<Flags>
Public Enum TableItemType
TableItemNode tableItem = new TableItemNode("Sales", TableItemType.Headers, "Amount");
TableItemType itemType = tableItem.ItemType;
string columnName = tableItem.ColumnFrom;
| Name | Description |
|---|---|
| All | [#All] The headers, data and the data part. |
| Data |
|
| Headers |
|
| None | Specifies that no table item specifier is used. |
| ThisRow |
|
| Totals |
|