*configurations()
Starts a configurations block.
Syntax
*configurations (config)
Type
HyperMesh Template Command
Description
Starts a configurations block.
This command must be accompanied by a *output() command at the end of the block.
Inputs
- config
- An integer that defines the config of entities in the block. If not specified, all entities are considered for the block.
Example
To write out all configurations with the format:
*configurations(id,"name")
*configurations()
*format()
*string("*configurations(")
*field(integer,id,0)
*string(",")
*field(quotedstring,name,0)
*string(")")
*end()
*output()