Interface ICLDFileCmdIndexer
Auxiliary object to get convenient array like syntax with square brakets for the list of commands in a CLData file.
Namespace: SprutCAMTech.SCPostprocessor
Assembly: SprutCAMTech.SCPostprocessor.dll
Syntax
public interface ICLDFileCmdIndexer
Properties
this[int?]
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 |
---|---|---|
int | 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". |