Skip to main content
All docs
V25.1
  • ASPxRichEditFieldsSettings.OpenHyperlinkOnClick Property

    Specifies whether a click opens a hyperlink.

    Namespace: DevExpress.Web.ASPxRichEdit

    Assembly: DevExpress.Web.ASPxRichEdit.v25.1.dll

    NuGet Package: DevExpress.Web.Office

    Declaration

    [DefaultValue(false)]
    public bool OpenHyperlinkOnClick { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to open a hyperlink on a click, false to open a hyperlink on a click while pressing the CTRL key.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to OpenHyperlinkOnClick
    ASPxRichEditSettings
    .Fields .OpenHyperlinkOnClick

    Remarks

    <script type="text/javascript">
      function onCreateHyperlinkTooltip(hyperlinkTooltip, hint) {
        return (hyperlinkTooltip + "\nClick to follow link")
      };
    </script>
    <dx:ASPxRichEdit ID="DemoRichEdit" runat="server" Width="100%" Height="700px">
      <Settings>
        <Fields OpenHyperlinkOnClick="true" CreateHyperlinkTooltip="onCreateHyperlinkTooltip" />
      </Settings>
    </dx:ASPxRichEdit>
    
    See Also