Optional properties for Link property item

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

Hierarchy (View Summary)

Properties

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.