API Documentation > Classes > Class pfcModelItemOwner
Class pfcModelItemOwner
Description
This is a base class for an object that has model items associated with it (such as a model).
See Also:
Direct Parent Classes:
Direct Known Subclasses:
User Guide References:
Method Summary
/* 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.
Method Detail
/* 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:
Feature with such identifier does not exist, OR
Item with such id and type does not exist.
Parameters:
Type
The type of the model item (feature, edge, and so on)
Id
The integer identifier of the model item
Returns:
The model item with the specified attributes, or null if a model item withsuch attributes has not been found.
User Guide References:
/* 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:
The specified layer_name does not exist in owner, OR
The item was not found, OR
The function did not find simplified representation in the solid.
See Also:
Parameters:
Type
The type of the model item to locate.
Name
The name of the model item to locate.
Returns:
The model item object, or null, if the item was not found.
User Guide References:
/* optional */ pfcModelItems
ListItems
( /* optional */ pfcModelItemType Type)
Provides a list of model items of the specified type.
Parameters:
Type
The type of model items to retrieve. If this parameter is null, then allthe model items will be listed.
Note that only those surfaces associated with solid geometry are included in the list of model items when you specify ITEM_SURFACE or null as the Type . Surfaces of Creo Parametric Surface features and Quilts are not included. To obtain a list of the quilt features with their component datum surfaces, specify ITEM_QUILT.
Returns:
The list of model items, or null if no model items of the specified type has been found.
User Guide References:
Was this helpful?