mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
30 lines
814 B
C#
30 lines
814 B
C#
using Radzen.Blazor;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="RadzenHtmlEditor.Execute" /> event that is being raised.
|
|
/// </summary>
|
|
public class HtmlEditorExecuteEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the RadzenHtmlEditor instance which raised the event.
|
|
/// </summary>
|
|
public RadzenHtmlEditor Editor { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="HtmlEditorExecuteEventArgs"/> class.
|
|
/// </summary>
|
|
/// <param name="editor">The editor instance.</param>
|
|
internal HtmlEditorExecuteEventArgs(RadzenHtmlEditor editor)
|
|
{
|
|
Editor = editor;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the name of the command which RadzenHtmlEditor is executing.
|
|
/// </summary>
|
|
public string? CommandName { get; set; }
|
|
}
|
|
|