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. |
|||||||||||
Synopsis | |||||||||||
#include <ProDwgtable.h> | |||||||||||
ProError | ProDwgtableSegExtentsGet | ( | |||||||||
ProDwgtable* table | |||||||||||
/* (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 | |||||||||||
|