Class TableCommandArgs
Command arguments for manipulating a table.
Namespace: Telerik.Blazor.Components.Editor
Assembly: Telerik.Blazor.dll
Syntax
public class TableCommandArgs : ToolCommandArgsBase
Constructors
TableCommandArgs()
Declaration
public TableCommandArgs()
TableCommandArgs(Int32, Int32)
Declaration
public TableCommandArgs(int rows, int cols)
Parameters
System.Int32
rows
|
System.Int32
cols
|
Properties
Cols
The number of columns in the table.
Declaration
public int Cols { get; set; }
Property Value
System.Int32
|
Rows
The number of rows in the table.
Declaration
public int Rows { get; set; }
Property Value
System.Int32
|