类 TableItemNode
java.lang.Object
com.grapecity.documents.excel.expressions.SyntaxNode
com.grapecity.documents.excel.expressions.TerminalNode
com.grapecity.documents.excel.expressions.TableItemNode
Represents a table item in the syntax tree.
-
构造器概要
构造器说明TableItemNode
(String tableName, TableItemType itemType, String columnName) Creates a newTableItemNode
from a column of a table.TableItemNode
(String tableName, TableItemType itemType, String columnFrom, String columnTo) Creates a newTableItemNode
from range of columns of a table. -
方法概要
修饰符和类型方法说明final String
The start column.final String
The end column.final TableItemType
The part of the table.final String
The name of the table.final void
setColumnFrom
(String value) The start column.final void
setColumnTo
(String value) The end column.final void
setItemType
(TableItemType value) The part of the table.final void
setTableName
(String value) The name of the table.
-
构造器详细资料
-
TableItemNode
Creates a newTableItemNode
from a column of a table.- 参数:
tableName
- The name of the table.itemType
- The part of the table.columnName
- The column of the table.
-
TableItemNode
Creates a newTableItemNode
from range of columns of a table.- 参数:
tableName
- The name of the table.itemType
- The part of the table.columnFrom
- The start column.columnTo
- The end column.
-
-
方法详细资料
-
getTableName
The name of the table. -
setTableName
The name of the table. -
getItemType
The part of the table. Values are defined in TableItemType. -
setItemType
The part of the table. Values are defined in TableItemType.- 参数:
value
- TableItemType value.
-
getColumnFrom
The start column. -
setColumnFrom
The start column. -
getColumnTo
The end column. -
setColumnTo
The end column.
-