Class Image
Represents an inline image element:
Implements
Inherited Members
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
Syntax
public class Image : InlineContainer, INode
Constructors
Image()
Represents an inline image element:
Declaration
public Image()
Properties
Destination
Gets or sets the destination (URL) of the image.
Declaration
public string Destination { get; set; }
Property Value
Type | Description |
---|---|
string |
Title
Gets or sets the alternative text of the image.
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 |