Object PmfTable
Description:
This object represents one form item of the type: Table.
Properties and methods of this object:
Related objects:
PmfTableArea | (Table area) The object represents table area |
PmfTableColumn | (Column of the table area) The object represents the column in the selected table area |
PmfTableRow | (Table area row) The object represents a row in selected table area |
PmfTableCell | (Table area cell) The object represents a cell in selected table area |
Properties and methods that are common to all objects of the PmfObject type:
Events:
onAction | Is triggered when an important logical action happens over the object |
onEditAccept | Is triggered after the table cell editing is finished |
onFocus | Is triggered if the Pmf object gets or loses focus |
onSelChange | Is triggered when another row or cell is selected |
Note:
Areas in the table:
The table consists of 6 areas:
11=MainBody = Main data area:
The area is always visible.
12=MainHead = Main area header:
The area is visible only if number of rows in this area is non-zero.
13=MainFoot = Main area footer:
The area is visible only if number of rows in this area is non-zero.
21=LeftBody = Left data area:
The area is visible only if number of columns in this are is non-zero.
22=LeftHead = Left area header:
The area is visible only if the
21=LeftBody and
12=MainHead areas are visible.
23=LeftFoot = Left area footer: The area is visible only if the 21=LeftBody and 13=MainFoot areas are visible.
In table initialization phase, the number of columns and the number of rows is set by methods
InitCols and
InitRows.
The number of columns and number of rows can be then modified dynamically by methods
InsertCol,
DeleteCol,
InsertRow,
DeleteRow.
Access to corresponding area is available by the
GetArea method.
Set the value of the cell in corresponding area:
oPmfTable.GetArea(11).GetRow(1).GetCell(2).Value = 3.14