Class
LinkCommandArgs

Command arguments for manipulating links.

Definition

Namespace:Telerik.Blazor.Components.Editor

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class LinkCommandArgs : ToolCommandArgsBase

Inheritance: objectToolCommandArgsBaseLinkCommandArgs

Inherited Members ToolCommandArgsBase.CommandNameToolCommandArgsBase.ShouldFocusView

Constructors

LinkCommandArgs()

Declaration

cs-api-definition
public LinkCommandArgs()

LinkCommandArgs(string, string)

Declaration

cs-api-definition
public LinkCommandArgs(string href, string text)

Parameters

href

string

text

string

LinkCommandArgs(string, string, string)

Declaration

cs-api-definition
public LinkCommandArgs(string href, string text, string title)

Parameters

href

string

text

string

title

string

LinkCommandArgs(string, string, string, string)

Declaration

cs-api-definition
public LinkCommandArgs(string href, string text, string target, string title)

Parameters

href

string

text

string

target

string

title

string

Properties

Href

The href attribute of the anchor.

Declaration

cs-api-definition
public string Href { get; set; }

Property Value

string

Target

The target attribute of the anchor.

Declaration

cs-api-definition
public string Target { get; set; }

Property Value

string

Text

The text content of the anchor.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

Title

The title attribute of the anchor.

Declaration

cs-api-definition
public string Title { get; set; }

Property Value

string