Interface AnalysisPropertyValue<T>

Represents the values held by a AnalysisProperty.

interface AnalysisPropertyValue<T> {
    dataType: DataType;
    isList: boolean;
    name: string;
    value<T2>(): null | T2;
    valueList<T2>(): T2[];
}

Type Parameters

Hierarchy (view full)

Properties

Methods

Properties

dataType: DataType

Get the Spotfire internal data type of the property.

isList: boolean

Gets a value indicating whether the property is a list.

name: string

Gets the name of this instance.

Methods