Category Drawings and detail, Object ProDwgtable

Function ProDwgtableRowAdd


Description
Adds a row to a table. If you try to insert a row in the middle of a nontemplate element of a repeat region, this function returns an error.
Replacement in Object TOOLKIT: pfcTable::InsertRow
Synopsis
#include <ProDwgtable.h>
ProErrorProDwgtableRowAdd(
ProDwgtable* table
/* (In)
the table;
*/
int insert_after_row
/* (In)
insert the new row after this row; Row numbers start with 1. Pass the value 0 to insert the new row at the top of the table
*/
int display
/* (In)
Flag that specifies whether or not the table is to be displayed after creation.
*/
double height_in_chars
/* (In)
the height of the row in characters.
*/
)
Returns
PRO_TK_NO_ERRORSuccess.
PRO_TK_GENERAL_ERRORFailure

Manual References:

  1. Drawings: Modifying Drawing Tables
  2. Drawings: Modifying Drawing Tables

Sample Code References:

  1. pt_examples ( TestDrawTbl.c )