hm_getincludes
Returns a list of include IDs or names.
Syntax
hm_getincludes ?mode?
Type
HyperMesh Tcl Query Command
Description
Returns a list of include IDs or names. If no argument is specified, the IDs are returned.
The IDs and names are returned in the same order.
Inputs
- mode
- The query mode. Valid values are:- -byshortname
- Returns the list of includes by their short names.
 - -byfullname
- Returns the list of includes by their full path names.
 - -byshortnameexportpair
- Returns the list of includes by their short names, along with the export flag for each.
 - -byshortnamesolverflagpair
- Returns the list of includes by their short names, along with the solver flag for each.
 - -byshortnamealwaysmergeflagpair
- Returns the list of includes by their short names, along with the always merge flag for each.
 
Example
To get the list of include IDs:
hm_getincludesTo get the list of include short names:
hm_getincludes -byshortnameErrors
if { [ catch {command_name...} ] } {
   # Handle error
}