HyperlinkEdit.NavigationUrlFormat Property
Gets or sets a string that specifies how to format the URL. This is a dependency property.
Namespace: DevExpress.Xpf.Editors
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Property Value
Type | Description |
---|---|
String | A String that specifies the format of the URL. |
Remarks
The format specified by the NavigationUrlFormat property is applied to the hyperlink editor’s BaseEdit.EditValue. The resulting string is used to set the HyperlinkEdit.ActualNavigationUrl property’s value.
The following example demonstrates how to format a hyperlink editor’s edit value as a mailto
link.
<dxe:HyperlinkEdit EditValue="callahan@example.com" NavigationUrlFormat="mailto:{0}" AllowAutoNavigate="True"/>
See Also