Represents the values held by a Page.

interface PageValues {
    id: string;
    index: number;
    name: string;
    visible: boolean;
}

Hierarchy (view full)

Properties

Properties

id: string

Gets the unique id for this instance. The id is stable during the page life cycle, thus it can be used to store as a reference to this page in a ModProperty or AnalysisProperty.

1.1

index: number

Gets the zero-based index in this instance in the page collection in the Spotfire document.

name: string

Gets the name of this instance.

visible: boolean

Gets a value indicating whether this instance is visible.