| Library | Module | Frames | Expand |
| /* optional */ pfcModelItem | GetItemById (pfcModelItemType Type, number Id) | |
| Returns the specified model item, given its identifier and type. | ||
| /* optional */ pfcModelItem | GetItemByName (pfcModelItemType Type, string Name) | |
| Returns a model item, given a string name and type, if it exists. | ||
| /* optional */ pfcModelItems | ListItems ( /* optional */ pfcModelItemType Type) | |
| Provides a list of model items of the specified type. | ||
| /* optional */ pfcModelItem | GetItemById | (pfcModelItemType Type, number Id) |
|
Returns the specified model item, given its identifier and type. Exceptions thrown (but not limited to): pfcXToolkitNotExist - This means either:
|
| /* optional */ pfcModelItem | GetItemByName | (pfcModelItemType Type, string Name) |
|
Returns a model item, given a string name and type, if it exists. Exceptions thrown (but not limited to): pfcXToolkitNotFound - This means either:
|
| /* optional */ pfcModelItems | ListItems | ( /* optional */ pfcModelItemType Type) |
|
Provides a list of model items of the specified type. Following model item types are supported for Solid models ITEM_FEATURE ITEM_SURFACE ITEM_COORD_SYS ITEM_AXIS ITEM_QUILT ITEM_EDGE ITEM_POINT ITEM_CURVE ITEM_LAYER ITEM_SOLID_GEOMETRY ITEM_NOTE ITEM_DIMENSION ITEM_REF_DIMENSION ITEM_EXPLODED_STATE ITEM_SIMPREP Following model item types are supported for2D models ITEM_TABLE ITEM_DIMENSION ITEM_REF_DIMENSION ITEM_DTL_ENTITY ITEM_DTL_GROUP ITEM_DTL_SYM_DEFINITION ITEM_DTL_SYM_INSTANCE ITEM_DTL_OLE_OBJECT ITEM_LAYER
|