pltIBuildPlotsCtrl Class
Takes information from a model and translates it to be graphed in the Build Plots panel.
Syntax
pltIBuildPlotsCtrl_handle AddRequestLocator rx_pool, rx_binding, rx_layer, id
Application
HyperWorks Tcl Modify
Description
This command takes information from a model and translates it to be graphed in the Build Plots panel.
Inputs
- rx_pool
- The pool (specific group of information) that you want to get information from. You can call the GetPoolTypeList and GetPoolList commands to find the types of pools available for the file chosen.
- rx_binding
- The request type that you want to use.
- “Nodes”
- “Elements”
- “Surface”
- “Volume”
- “Part”
- “Assembly”
- “Set”
- “Model”
- “System”
- rx_layer
- The layer of the model that you want to make a request locator of. To find the list of layers, call the GetLayerList command. If there are no layers, you must input an empty string “”.
- id
- The ID of the specific request that you want to make a request locator of. (ex: 293).
Example
hwi GetSessionHandle sess;
sess GetClientManagerHandle mgr plot;
mgr GetBuildPlotsCtrlHandle build;
build SelectDataFile "c:/demos/mv_hv_hg/HyperView Stuff/d3plotag" true
build AddRequestLocator Node “Nodes” “” 246;
Errors
Success (0) or an error message is returned.
Keywords
HyperWorks
Tcl
Build Plots
Modify
Create