![]() | InDesign SDK 20.5 |
#include <CellTable.h>
Public Member Functions | |
| CellTable (int32 numColumn, int32 numRow) | |
| ~CellTable () | |
| bool | SetString (const WideString &str, int32 column, int32 row) |
| const WideString & | GetString (int32 column, int32 row) |
CellTable This is a table of cell data class. The table has many cell datas, And two access function.
| CellTable::CellTable | ( | int32 | numColumn, |
| int32 | numRow | ||
| ) |
Constructor.
| numColumn | The number of columns for the new table. |
| numRow | The number of rows for the new table. |
| CellTable::~CellTable | ( | ) |
Destructor.
| const WideString & CellTable::GetString | ( | int32 | column, |
| int32 | row | ||
| ) |
Getting a string data from a cell.
| column | The number of column for getting a string data from a cell. |
| row | The number of row for getting a string data from a cell. |
| bool CellTable::SetString | ( | const WideString & | str, |
| int32 | column, | ||
| int32 | row | ||
| ) |
Set a string in cell of the table.
| str | WideString class data. |
| column | The column number of the cell to set. @param row The row number of the cell to set. |