Visualization
    Preparing search index...

    Interface AnalysisPropertyValue<T>

    Represents the values held by a AnalysisProperty.

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

    Type Parameters

    Hierarchy (View Summary)

    Index

    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