API Documentation > Drawings and detail > Object ProDwgtable > Function ProDwgtableSegExtentsGet
Function ProDwgtableSegExtentsGet
DEPRECATED:
Creo 13.0
SUPERSEDED BY:
Description
Returns the start/end rows and columns of a particular table segment.
Note: Row and column numbers range from 1 to the total number of rows and columns in the table.
Replacement in Object TOOLKIT:
Synopsis
#include <ProDwgtable.h>
ProDwgtableSegExtentsGet
(
/* (In)
The drawing table.
*/
int segment_id
/* (In)
The table segment id. Pass PRO_VALUE_UNUSED for a single segment table.
*/
int* first_row
/* (Out)
The first row in the table segment. Pass NULL if not interested in this value.
*/
int* last_row
/* (Out)
The last row in the table segment. Pass NULL if not interested in this value.
*/
int* first_column
/* (Out)
The first column in the table segment. Pass NULL if not interested in this value.
*/
int* last_column
/* (Out)
The last column in the table segment. Pass NULL if not interested in this value.
*/
)
Returns
The function succeeded.
One or more input arguments was invalid.
PRO_VALUE_UNUSED was used for multiple-segment table.
Was this helpful?