Class TableCommandsArgs
The class is used to configure table settings in the Rich Text Editor.
Inheritance
System.Object
TableCommandsArgs
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class TableCommandsArgs : Object
Remarks
This class provides adjustable settings for table creation and display attributes within the editor.
Constructors
TableCommandsArgs()
Declaration
public TableCommandsArgs()
Properties
Columns
Gets or sets the number of columns to be inserted in the table.
Declaration
public int Columns { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer defining the column count. |
Remarks
Columns impacts the horizontal division in tables, dictating the number of data segments.
Rows
Gets or sets the number of rows to be inserted in the table.
Declaration
public int Rows { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer defining the row count. |
Remarks
Rows controls the vertical sizing of the table by determining row placement and rendering.
Width
Gets or sets the width of the table.
Declaration
public CommandsWidth Width { get; set; }
Property Value
Type | Description |
---|---|
CommandsWidth | An instance of CommandsWidth specifying dimension properties. |
Remarks
Width affects the overall space allocation and presentation of table structures within editor content.