PilotGaea 2D O'view
    正在準備搜尋索引...

    類型別名 AttributesWidgetSetting

    AttributesWidgetSetting: WidgetSetting & {
        title: string;
        content: string | { [key: string]: string };
        style?: CSSStyleMap;
        labelWidth?: number;
        maxTextWidth?: number;
        maxContentHeight?: number;
        callback?: () => void;
    }

    屬性檢視Widget參數。

    類型宣告

    • title: string

      Widget標題。

    • content: string | { [key: string]: string }

      屬性物件,key為屬性標頭,value為屬性內容。

    • 可選style?: CSSStyleMap

      屬性檢視容器DOM元件style參數。

    • 可選labelWidth?: number

      屬性標頭寬度。

    • 可選maxTextWidth?: number

      屬性內容最大寬度。

    • 可選maxContentHeight?: number

      屬性最大高度。

    • 可選callback?: () => void