CalculationResults CalculationResultsIdentifiers Class TIBCO Spotfire 6.0 API Reference
Implement this to contain CalculationResultsIdentifier objects to uniquely identify each result in this CalculationResults.
Inheritance Hierarchy

System Object
  Spotfire.Dxp.Application.Calculations CalculationResults CalculationResultsIdentifiers

Namespace: Spotfire.Dxp.Application.Calculations
Assembly: Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public abstract class CalculationResultsIdentifiers
Remarks

Each CalculationResults implementation should have an implementation of this inner class. Each CalculationResultsIdentifier should have a unique string within the identifiers in this class. The pattern is very similar to the pattern for DocumentNode PropertyNames. The CalculationResultsIdentifier is used to name each result when adding them to the ResultAccumulator and once the calculation is finished can be used to get the result.
Examples

An implementation of this class could look like: 
             public new abstract class CalculationResultsIdentifiers : CalculationResults.CalculationResultsIdentifiers
            {
                public static readonly CalculationResultsIdentifier MySpecialColumn = CreateIdentifier("MySpecialColumn");

                public static readonly CalculationResultsIdentifier MyLumpedTogetherColumns = CreateIdentifier("MyLumpedTogetherColumns");

                public static readonly CalculationResultsIdentifier MyNewTable = CreateIdentifier("MyNewTable");
            }
See Also