接口 IProgressIndicatorPropertyItemOptions

Optional properties for progress indicator property item

interface IProgressIndicatorPropertyItemOptions {
    enable?: boolean;
    hiddenLabel?: boolean;
    progress?: IObservableProp<number>;
    title?: LocalizedString;
    tooltip?: LocalizedString;
    variant?: ProgressIndicatorPropertyItemVariant;
    visible?: boolean;
}

层级 (查看层级一览)

属性

enable?: boolean

Initial enabled state of property item. If undefined, it will default to true.

hiddenLabel?: boolean

If true label text will be hidden. If undefined, the label will be visible by default.

progress?: IObservableProp<number>

Normalized loading progress (0 to 1).

Localized title of the property item.

tooltip?: LocalizedString

Tooltip description of the property item.

Determines how we display progress indicator. If undefined, it will default to Spinner.

visible?: boolean

Initial visibility state of property item. If undefined, it will default to true.