Class LinkCommandArgs
Command arguments for manipulating links.
Namespace: Telerik.Blazor.Components.Editor
Assembly: Telerik.Blazor.dll
Syntax
public class LinkCommandArgs : ToolCommandArgsBase
Constructors
LinkCommandArgs()
Declaration
public LinkCommandArgs()
LinkCommandArgs(String, String)
Declaration
public LinkCommandArgs(string href, string text)
Parameters
System.String
href
|
System.String
text
|
LinkCommandArgs(String, String, String)
Declaration
public LinkCommandArgs(string href, string text, string title)
Parameters
System.String
href
|
System.String
text
|
System.String
title
|
LinkCommandArgs(String, String, String, String)
Declaration
public LinkCommandArgs(string href, string text, string target, string title)
Parameters
System.String
href
|
System.String
text
|
System.String
target
|
System.String
title
|
Properties
Href
The href attribute of the anchor.
Declaration
public string Href { get; set; }
Property Value
System.String
|
Target
The target attribute of the anchor.
Declaration
public string Target { get; set; }
Property Value
System.String
|
Text
The text content of the anchor.
Declaration
public string Text { get; set; }
Property Value
System.String
|
Title
The title attribute of the anchor.
Declaration
public string Title { get; set; }
Property Value
System.String
|