Category Drawings and detail, Object ProDwgtable

Function ProDwgtableTextEnter


DEPRECATED: Creo 11.0
SUPERSEDED BY: ProTableTextEnter
Description
Adds the specified lines of text into the appropriate column and row of the table. Note that more than one line of text may be written into a cell. If a line of text is too wide for the cell (too many characters), the text overlaps the neighboring cells.
Synopsis
#include <ProDwgtable.h>
ProErrorProDwgtableTextEnter(
ProDwgtable* table
/* (In)
The identifier of the table to which to add the text for the cell.
*/
int column
/* (In)
The column number of the cell. The column indices start at 1.
*/
int row
/* (In)
The row number of the cell. The row indices start at 1.
*/
ProWstring* lines
/* (In)
ProArray of text lines assigned to the table cell.
*/
)
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: Creating MBD and Drawing Tables
  3. Model-Based Definition and Drawing Tables: Creating MBD and Drawing Tables

Sample Code References:

  1. pt_userguide ( UgDwgtableExamples.c )