Interface ICLDTechOperationList
The list of SprutCAM's technological operations of a project.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public interface ICLDTechOperationListProperties
Count
The count of operations in the list.
Declaration
int Count { get; }Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
Item[Int32]
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 | 
|---|---|---|
| System.Int32 | 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(Int32)
Finds the operation by it's index in the project's CLData files list.
Declaration
ICLDTechOperation GetOperationByFileIndex(int cldFileIndex)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | 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. |