Optional properties for Link property item

interface ILinkPropertyItemOptions {
    enable?: boolean;
    hideIcon?: boolean;
    title?: LocalizedString;
    tooltip?: LocalizedString;
    visible?: boolean;
}

层级 (查看层级一览)

属性

enable?: boolean

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

hideIcon?: boolean

Hides the link icon. If undefined, it will default to false.

Localized title of the text item.

tooltip?: LocalizedString

Tooltip description of the property item

visible?: boolean

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