Interface ICLDFileList
The list of CLData file. Allows to get the file by it's index and the count of files.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public interface ICLDFileList
Properties
FileCount
Count of the files in this list.
Declaration
int FileCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Item[Int32]
Allows to get the file by it's index [0 .. FileCount-1].
Declaration
ICLDFile this[int Index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | Index | Index of the CLData file to get [0 .. FileCount-1]. |
Property Value
Type | Description |
---|---|
ICLDFile | Returns the CLData file with the given index. |