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