public final class DocumentDataTable extends Object
Provides a data table.
Constructor and Description |
---|
DocumentDataTable(String tableName,
int pageIndex)
Initializes a new instance of the
DocumentDataTable class. |
DocumentDataTable(String tableName,
int pageIndex,
TableArea tableArea,
Rectangle tableRectangle)
Initializes a new instance of the
DocumentDataTable class. |
Modifier and Type | Method and Description |
---|---|
String |
get_Item(int row,
int column)
Gets a value of the table cell.
|
int |
getColumnCount()
Gets a number of table columns.
|
int |
getPageIndex()
Gets a zero-based page index.
|
int |
getRowCount()
Gets a number of table rows.
|
String |
getTableName()
Gets a name of the data table.
|
Rectangle |
getTableRectangle()
Gets a rectangle of data table.
|
public DocumentDataTable(String tableName, int pageIndex)
Initializes a new instance of the DocumentDataTable
class.
tableName
- A name of the table.pageIndex
- A zero-based page index.public DocumentDataTable(String tableName, int pageIndex, TableArea tableArea, Rectangle tableRectangle)
Initializes a new instance of the DocumentDataTable
class.
tableName
- A name of the table.pageIndex
- A zero-based page index.tableArea
- An instance of TableArea
with table data.tableRectangle
- A rectangle area of data table.public String getTableName()
Gets a name of the data table.
public int getPageIndex()
Gets a zero-based page index.
public Rectangle getTableRectangle()
Gets a rectangle of data table.
public int getRowCount()
Gets a number of table rows.
public int getColumnCount()
Gets a number of table columns.
public String get_Item(int row, int column)
Gets a value of the table cell.
row
- A zero-based row index.column
- A zero-based column index.Copyright © 2019. All rights reserved.