Class Link
Represents a link element: [Link text](/path/to/page "Optional title")
Implements
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
Syntax
public class Link : InlineContainer, INode
Properties
Destination
Gets or sets the destination (URL) of the link.
Declaration
public string Destination { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Title
Gets or sets the link title.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Accept(INodeVisitor)
Accepts a visitor.
Declaration
public override void Accept(INodeVisitor visitor)
Parameters
Type | Name | Description |
---|---|---|
INodeVisitor | visitor |