Skip to main content
All docs
V25.1
  • TdxCustomLayoutItemCaptionOptions.ShowHyperlinkHint Property

    Specifies if a hyperlink in the layout item caption displays the target URI in a hint when the mouse pointer hovers over the hyperlink.

    Declaration

    property ShowHyperlinkHint: TdxDefaultBoolean read; write; default bDefault;

    Property Value

    Type Default Description
    TdxDefaultBoolean bDefault
    bDefault
    The parent layout control‘s OptionsItem.ShowHyperlinkHint property specifies if the layout item’s caption can show hyperlink hints.
    bTrue
    Hyperlink hints are explicitly enabled in the layout item caption.
    bFalse
    Hyperlink hints are explicitly disabled in the layout item caption.

    Remarks

    Set the ShowHyperlinkHint property to bFalse to explicitly disable hyperlink hints in the layout item caption.

    Tip

    You can handle the layout item’s OnHyperlinkMouseEnter and OnHyperlinkMouseLeave events to display URI targets of hot-tracked hyperlinks in a different UI element if hyperlink hints are disabled.

    Refer to OnHyperlinkMouseEnter and OnHyperlinkMouseLeave event descriptions for detailed information and code examples.

    Default Value

    The ShowHyperlinkHint property’s default value is bDefault.

    The default ShowHyperlinkHint property value indicates that the parent layout control‘s OptionsItem.ShowHyperlinkHint property specifies if the layout item’s caption displays the target URI in a hint when a user positions the mouse pointer at a hyperlink in the caption.

    See Also