Interface ICLDTechOperationList
The list of SprutCAM's technological operations of a project.
Namespace: SprutCAMTech.SCPostprocessor
Assembly: SprutCAMTech.SCPostprocessor.dll
Syntax
public interface ICLDTechOperationList
Properties
Count
The count of operations in the list.
Declaration
int Count { get; }
Property Value
Type | Description |
---|---|
int |
this[int]
Let's find the operation by it's index in the list [0 .. Count-1].
Declaration
ICLDTechOperation this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of operation to get [0 .. Count-1]. |
Property Value
Type | Description |
---|---|
ICLDTechOperation | Returns the operation with the given index. If the index is incorrect it returns "Null". |
Methods
GetOperationByFileIndex(int)
Finds the operation by it's index in the project's CLData files list.
Declaration
ICLDTechOperation GetOperationByFileIndex(int cldFileIndex)
Parameters
Type | Name | Description |
---|---|---|
int | cldFileIndex | The index of the operation's file in the project's CLData files list. |
Returns
Type | Description |
---|---|
ICLDTechOperation | Returns the operation with the given file index. Returns "Null" if nothing found. |