| Library | Module | Frames | Expand |
| Function | GetItemById (Type as IpfcModelItemType, Id as Long) as IpfcModelItem [optional] | |
| Returns the specified model item, given its identifier and type. | ||
| Function | GetItemByName (Type as IpfcModelItemType, Name as String) as IpfcModelItem [optional] | |
| Returns a model item, given a string name and type, if it exists. | ||
| Function | ListItems (Type as IpfcModelItemType [optional]) as IpfcModelItems [optional] | |
| Provides a list of model items of the specified type. | ||
| Function | GetItemById | (Type as IpfcModelItemType, Id as Long) as IpfcModelItem [optional] |
|
Returns the specified model item, given its identifier and type. Exceptions thrown (but not limited to): IpfcXToolkitNotExist - This means either:
|
| Function | GetItemByName | (Type as IpfcModelItemType, Name as String) as IpfcModelItem [optional] |
|
Returns a model item, given a string name and type, if it exists. Exceptions thrown (but not limited to): IpfcXToolkitNotFound - This means either:
|
| Function | ListItems | (Type as IpfcModelItemType [optional]) as IpfcModelItems [optional] |
|
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
|