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

Command arguments for manipulating a table.

Definition

Namespace:Telerik.Blazor.Components.Editor

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class TableCommandArgs : ToolCommandArgsBase

Inheritance: objectToolCommandArgsBaseTableCommandArgs

Inherited Members ToolCommandArgsBase.CommandNameToolCommandArgsBase.ShouldFocusView

Constructors

C#
public TableCommandArgs()
C#
public TableCommandArgs(int rows, int cols)
Parameters:rowsintcolsint

Properties

The number of columns in the table.

C#
public int Cols { get; set; }

The number of rows in the table.

C#
public int Rows { get; set; }