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: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.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 |
---|---|
System.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 |
---|---|
System.Boolean |
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 |
---|---|
System.Boolean |
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 |
---|---|
System.String |