Interface IOptions<T>

An options object for initializing a title.

interface IOptions<T> {
    caption?: string;
    className?: string;
    closable?: boolean;
    dataset?: Title.Dataset;
    icon?: VirtualElement.IRenderer;
    iconClass?: string;
    iconLabel?: string;
    label?: string;
    mnemonic?: number;
    owner: T;
}

Type Parameters

  • T

Properties

caption?: string

The caption for the title.

className?: string

The extra class name for the title.

closable?: boolean

The closable state for the title.

dataset?: Title.Dataset

The dataset for the title.

The icon renderer for the title.

iconClass?: string

The icon class name for the title.

iconLabel?: string

The icon label for the title.

label?: string

The label for the title.

mnemonic?: number

The mnemonic index for the title.

owner: T

The object which owns the title.