hm_ce_getfeprojfeatureelems
Returns the independent or dependent layer of feature elements.
Syntax
hm_ce_getfeprojfeatureelems index layer
Type
HyperMesh Tcl Query
Description
Returns the independent or dependent layer of feature elements. Returns an empty string if there are no elements.
This is supported for: spot "acm" "style = 5" (feature elements are washer elements)
This should only be called from within a connector-registered property script. The projection data this relies upon is destroyed immediately after connector FE realization.
Inputs
- index
- The index of interest in the array (corresponds to a weld).
- layer
- 0 - Return the dependent layer
Example
To get the independent layer feature elements for index 5:
hm_ce_getfeprojfeatureelems 5 1
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
14.0.110