Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxHyperlinkSettings Class

Contains hyperlink settings.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v24.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
public class DxHyperlinkSettings :
    DxSettingsComponent<HyperlinkSettingsModel>

#Remarks

The DxRichEdit component uses a list of allowed URI schemes to prohibit hyperlink URLs that may contain malicious code. This list checks a hyperlink’s URL when it is clicked. The link is opened if the URI scheme appears in the list. The default list contains the following schemes: http, https, mailto, and tel.

Assign the list of allowed URI schemes to the AllowedUriSchemes property to change the default list:

Razor
<DxRichEdit>
    <HyperlinkSettings>
        <DxHyperlinkSettings AllowedUriSchemes="@(new string[] { "http", "https" })"/>
    </HyperlinkSettings>
</DxRichEdit>

#Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.RichEdit.Internal.HyperlinkSettingsModel>
DxHyperlinkSettings
See Also