Class CLDArray
CLD array to contain numerical parameters of CLData commands.
Inheritance
System.Object
    CLDArray
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public class CLDArrayConstructors
CLDArray()
Creates a new instance of a CLDArry class.
Declaration
public CLDArray()Fields
fInitNamesProc
Auxiliary callback procedure to initialize the Names array.
Declaration
protected InitNamesProc fInitNamesProcField Value
| Type | Description | 
|---|---|
| InitNamesProc | 
Names
The array of textual names of parameters.
Declaration
protected string[] NamesField Value
| Type | Description | 
|---|---|
| System.String[] | 
Values
The array of values for parameters.
Declaration
protected InpNumber[] ValuesField Value
| Type | Description | 
|---|---|
| InpNumber[] | 
Properties
Count
Count of values inside this CLD array.
Declaration
public int Count { get; }Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
Item[Int32]
Returns the numerical value of the parameter by it's index [1..Count].
Declaration
public InpNumber this[int Index] { get; }Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | Index | Index of the parameter [1..Count] for compatibility with Postprocessors Generator. | 
Property Value
| Type | Description | 
|---|---|
| InpNumber | Numerical value of the parameter. | 
Item[String]
Returns the numerical value of the parameter by it's textual name.
Declaration
public InpNumber this[string Name] { get; }Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | Name | Textual name of the paramete. | 
Property Value
| Type | Description | 
|---|---|
| InpNumber | Numerical value of the parameter. |