接口 IProgressIndicatorPropertyItem实验性

A property item which supports ProgressIndicator properties

interface IProgressIndicatorPropertyItem {
    enable: boolean;
    id: string;
    paneId: string;
    progress: number;
    typeName: PropertyItemType;
    visible: boolean;
    setTitle(title: LocalizedString): void;
    setTooltip(tooltip: LocalizedString): void;
}

层级 (查看层级一览)

属性

enable: boolean

If the item is enabled in the UI.

id: string

Unique ID for the property item.

paneId: string

The parent pane id.

progress: number

Current progress of the property item.

The type name of the target property.

visible: boolean

If the item should be visible in the UI.

方法

  • 实验性

    参数

    返回 void

    Updates title of the property item.

  • 实验性

    参数

    返回 void

    Updates tooltip description of property item.