Interface ICLDFileCmdIndexer
Auxiliary object to get convenient array like syntax with square brakets for the list of commands in a CLData file.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public interface ICLDFileCmdIndexer
Properties
Item[Int32]
The list of commands in a CLData file. Allows to get a command by the index [0..CmdCount-1].
Declaration
ICLDCommand this[int Index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | Index | Index of the CLData command to get [0..CmdCount-1]. |
Property Value
Type | Description |
---|---|
ICLDCommand | Returns the CLData command with the given index. If the index is incorrect it returns "Null". |