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

An internal entity. Do not use it until made public.

Definition

Namespace:Telerik.Blazor.Components.Spreadsheet.ToolBar.ToolTypes

Assembly:Telerik.Blazor.dll

Syntax:

C#
public abstract class SpreadsheetDialogTool : SpreadsheetCommandTool

Inheritance: objectSpreadsheetToolSpreadsheetCommandToolSpreadsheetDialogTool

Derived Classes: SpreadsheetInsertImageToolSpreadsheetInsertLinkTool

Constructors

C#
protected SpreadsheetDialogTool()

Properties

The text (or other content) of the button.

C#
public RenderFragment ChildContent { get; set; }

CSS class.

C#
public string Class { get; set; }

Whether the button is enabled. True by default.

C#
public bool Enabled { get; set; }

Specifies the icon rendered in the button. You can use either a predefined Telerik Icon or a custom one. Refer to Icons - Documentation for more information on how icons work.

C#
public object Icon { get; set; }

Fires when the button is clicked.

C#
public EventCallback<MouseEventArgs> OnClick { get; set; }