Category Drawings and detail, Object ProDwgtable

Function ProDwgtableColumnAdd


DEPRECATED: Creo 11.0
SUPERSEDED BY: ProTableColumnAdd
Description
adds column to a table
Replacement in Object TOOLKIT: pfcTable::InsertColumn
Synopsis
#include <ProDwgtable.h>
ProErrorProDwgtableColumnAdd(
ProDwgtable* table
/* (In)
the table;
*/
int insert_after_col
/* (In)
insert the new column after this column. Column numbers start with 1. If you want the new column to be the first column, pass the value 0.
*/
int display
/* (In)
Flag that specifies whether or not the table is to be displayed after creation.
*/
double width_in_chars
/* (In)
the width of the column, 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 )