Class ImageCommandArgs
Command arguments for manipulating images.
Namespace: Telerik.Blazor.Components.Editor
Assembly: Telerik.Blazor.dll
Syntax
public class ImageCommandArgs : ToolCommandArgsBase
Constructors
ImageCommandArgs()
Declaration
public ImageCommandArgs()
ImageCommandArgs(String, String)
Declaration
public ImageCommandArgs(string src, string alttext)
Parameters
System.String
src
|
System.String
alttext
|
ImageCommandArgs(String, String, String, String)
Declaration
public ImageCommandArgs(string src, string alttext, string width, string height)
Parameters
System.String
src
|
System.String
alttext
|
System.String
width
|
System.String
height
|
Properties
Alt
The alt attribute of the img tag.
Declaration
public string Alt { get; set; }
Property Value
System.String
|
Height
The value of the height attribute of the img tag.
Declaration
public string Height { get; set; }
Property Value
System.String
|
Src
The src (URL) of the image.
Declaration
public string Src { get; set; }
Property Value
System.String
|
Width
The value of the width attribute of the img tag.
Declaration
public string Width { get; set; }
Property Value
System.String
|