接口 IPropertyItem<T, Prop>实验性

interface IPropertyItem<T, Prop> {
    enable: boolean;
    id: string;
    obj: T;
    paneId: string;
    property: Prop;
    typeName: PropertyItemType;
    value: T[Prop];
    visible: boolean;
    dispose(): void;
}

类型参数

层级 (查看完整内容)

属性

enable: boolean

If the item is enabled in the UI.

id: string

Unique ID for the property item.

obj: T

The object associated.

paneId: string

The parent pane id.

property: Prop

The target property of the object associated.

The type name of the target property.

value: T[Prop]

The value of the property.

visible: boolean

If the item should be visible in the UI.

方法