LinkifyFormatOptionsTagName Property
Gets or sets the HTML tag to use for each link. For cases where you can’t use anchor tags.
Accepts a function that takes the link type, the unformatted href, and returns the tag name.
Default value: "a" for all link types.
Namespace: DevCase.Core.DataProcessing.HtmlAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
No code example is currently available or this language may not be supported.
Property Value
FuncLinkifyLinkType,
String,
String
This is a code example.
No code example is currently available or this language may not be supported.
TagName =
Function(linkType As LinkifyLinkType, href As String) As String
Select Case linkType
Case LinkifyLinkType.Url
Return "Custom_Tagname"
Case Else
Return "a"
End Select
End Function
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.