*hf_ClearLLHandles
Delete all the handles from the model.
Syntax
*hf_ClearLLHandles int_flag
Type
HyperMesh Tcl Modify
Description
This command deletes all the handles and the handles node pointer from the model.
Inputs
- int_flag
- Integer dummy value. Should always be set to 0.
Example
To delete the handles:
*hf_ClearLLHandles 0
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}