Skip to main content
All docs
V26.1
  • TdxMessageDialogForm.HintedTextClickProc Event

    Specifies the hint-marked text click handler procedure associated with the message box.

    Declaration

    property HintedTextClickProc: TdxMessageDialogHintedTextClickDelegate read; write;

    Remarks

    DevExpress message dialog boxes support BBCode-inspired markup tags for content assigned to the Message property:

    dxMessageBox('Read the [URL=https://www.devexpress.com/VCL]DevExpress VCL Documentation[/URL]',
      'Note', MB_OK or MB_ICONINFORMATION);
    

    VCL Editors Library: A Formatted Content Example in a Message Box

    The message box dialog form executes the procedure assigned to the HintedTextClickProc property every time a user clicks a text range enclosed between [HINT] and [/HINT] tags.

    See Also