Category Sketches and sections, Object ProSecdim

Function ProSecdimReferencesGet


Description
Retrieves the references of the specified dimension in the section.
Synopsis
#include <ProSecdim.h>
ProErrorProSecdimReferencesGet(
ProSection handle
/* (In)
The section handle.
*/
int dim_id
/* (In)
The identifier of the dimension.
*/
int** entity_ids
/* (Out)
An array of entity identifiers referenced by the section dimension. Free this memory using ProArrayFree().
*/
ProSectionPointType** point_types
/* (Out)
The corresponding array of point_types for each entity. Free this memory using ProArrayFree().
*/
int* p_num_refs
/* (Out)
The returned size of the arrays.
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully retrieved the information.
PRO_TK_GENERAL_ERRORA general error occurred and the function failed.
See Also
ProArrayFree

Sample Code References:

  1. pt_examples ( UtilSect.c )
  2. pt_examples ( UtilSect.c )