New to Telerik UI for BlazorStart a free 30-day trial

Command arguments for manipulating links.

Definition

Namespace:Telerik.Blazor.Components.Editor

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class LinkCommandArgs : ToolCommandArgsBase

Inheritance: objectToolCommandArgsBaseLinkCommandArgs

Inherited Members ToolCommandArgsBase.CommandNameToolCommandArgsBase.ShouldFocusView

Constructors

C#
public LinkCommandArgs()
C#
public LinkCommandArgs(string href, string text, string target, string title)
Parameters:hrefstringtextstringtargetstringtitlestring
C#
public LinkCommandArgs(string href, string text, string title)
Parameters:hrefstringtextstringtitlestring
C#
public LinkCommandArgs(string href, string text)
Parameters:hrefstringtextstring

Properties

The href attribute of the anchor.

C#
public string Href { get; set; }

The target attribute of the anchor.

C#
public string Target { get; set; }

The text content of the anchor.

C#
public string Text { get; set; }

The title attribute of the anchor.

C#
public string Title { get; set; }