Functions and constants relating to Labels
Details of functionsGetLabel(type_code[integer], item[integer], state_id (optional)[integer]) [static]DescriptionReturns the external label of internal <item> of type <type_code> |
A valid type code (e.g. NODE, SOLID, SHELL)
The internal number starting from 1
State number to use instead of the current state
Returnsinteger Return typeNumber |
Example
// Get the label of the 27th internal node var label = GetLabel(NODE, 27);
|