Category Drawings and detail, Object ProDrawing

Function ProDrawingSheetCopy


Description
Create a copy of a drawing sheet.
Synopsis
#include <ProDrawing.h>
ProErrorProDrawingSheetCopy(
ProDrawing drawing
/* (In)
The drawing handle. Set this to NULL for the current drawing.
*/
int sheet_to_copy
/* (In)
The sheet number of the sheet to create a copy of. Set this to a value less than 1 for the current sheet.
*/
int* sheet_copy
/* (Out)
The sheet number of the copy.
*/
)
Returns
PRO_TK_NO_ERRORThe function succeeded.
PRO_TK_BAD_INPUTSOne or more input arguments was invalid.
PRO_TK_INVALID_TYPEInvalid model type specified.
PRO_TK_CANT_MODIFYDrawing can't be modified.
PRO_TK_CANT_WRITEDrawing sheet copy attempt failed.

Manual References:

  1. Drawings: Drawing Sheets
  2. Drawings: Drawing Sheets

Sample Code References:

  1. pt_userguide ( UgSheetCopy.c )