Interface ICLDStructureCommand
STRUCTURE CLData command is used to make it possible to combine individual commands into groups and subgroups. STRUCTURE ON(71) command means the start of a new group, STRUCTURE OFF(72) means the end of a group. The groups can be nested.
Inherited Members
Namespace: DotnetPostprocessing.SDK
Assembly: DotnetPostprocessing.SDK.dll
Syntax
public interface ICLDStructureCommand : ICLDCommand, INamedProperty
Properties
Comment
Some arbitrary textual commentary or name of the group.
Declaration
string Comment { get; }
Property Value
Type | Description |
---|---|
string |
IsClose
Contains "true" if the command is the end of a group. Otherwise it contains "false".
Declaration
bool IsClose { get; }
Property Value
Type | Description |
---|---|
bool |
IsOpen
Contains "true" if the command is the start of a new group. Otherwise it contains "false".
Declaration
bool IsOpen { get; }
Property Value
Type | Description |
---|---|
bool |
NodeType
Textual attribute that defines the type of a group. There are few standard group types like "Approach", "String", "Level" etc. But it can contain any arbitrary value also.
Declaration
string NodeType { get; }
Property Value
Type | Description |
---|---|
string |