Category Drawings and detail, Object ProDwgtable

Function ProDwgtableRowAdd


DEPRECATED: Creo 11.0
SUPERSEDED BY: ProTableRowAdd
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. Technical Summary of Changes for Creo 11.0.0.0: Functions superseded from Creo 1.0 to Creo 11.0
  2. Model-Based Definition and Drawing Tables: Modifying MBD or Drawing Tables
  3. Model-Based Definition and Drawing Tables: Modifying MBD or Drawing Tables

Sample Code References:

  1. pt_examples ( TestDrawTbl.c )