Accessing Creo Simulate Items
The functions described in this section allow access to Creo Simulate items in Creo+.
Functions Introduced:
The Creo Simulate item is a derivative of the structure ProModelitem and is defined as
typedef struct pro_model_item
{
ProType type;
int id;
ProMdl owner;
}ProMechItem;
The function
ProSolidMechitemVisit() traverses the
Creo Simulate items in a specified model. This function allows you to specify the type of item to be located, or optionally all item types can be visited.
The function
ProMechitemNameGet() returns the name of the
Creo Simulate item.
The function
ProMechitemStatusGet() returns the visibility status of the item in the current
Creo Simulate environment.
The function
ProMechitemFilterAction() is used to filter
Creo Simulate items for visiting them.
The function
ProMechitemVisitAction() is used to visit a
Creo Simulate item.