InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CellTable Class Reference

#include <CellTable.h>

Public Member Functions

 CellTable (int32 numColumn, int32 numRow)
 
 ~CellTable ()
 
bool SetString (const WideString &str, int32 column, int32 row)
 
const WideStringGetString (int32 column, int32 row)
 

Detailed Description

CellTable This is a table of cell data class. The table has many cell datas, And two access function.

Constructor & Destructor Documentation

CellTable::CellTable (int32 numColumn,
int32 numRow 
)

Constructor.

Parameters
numColumnThe number of columns for the new table.
numRowThe number of rows for the new table.
CellTable::~CellTable ()

Destructor.

Member Function Documentation

const WideString & CellTable::GetString (int32 column,
int32 row 
)

Getting a string data from a cell.

Parameters
columnThe number of column for getting a string data from a cell.
rowThe number of row for getting a string data from a cell.
bool CellTable::SetString (const WideStringstr,
int32 column,
int32 row 
)

Set a string in cell of the table.

Parameters
strWideString class data.
columnThe column number of the cell to set. @param row The row number of the cell to set.