Class TableChangedEventArgs
Inheritance
System.Object
TableChangedEventArgs
Namespace: Syncfusion.Maui.RichTextEditor
Assembly: Syncfusion.Maui.RichTextEditor.dll
Syntax
public class TableChangedEventArgs : EventArgs
Constructors
TableChangedEventArgs(TableChangedAction, Int32, Int32)
Initializes a new instance of the TableChangedEventArgs class with the specified action and table dimensions.
Declaration
public TableChangedEventArgs(TableChangedAction action, int rowCount = 0, int columnCount = 0)
Parameters
Type | Name | Description |
---|---|---|
TableChangedAction | action | The action performed on the table. |
System.Int32 | rowCount | The number of rows in the table after the change. |
System.Int32 | columnCount | The number of columns in the table after the change. |
Properties
Action
Gets the type of action performed on the table (e.g., Created, Deleted, Modified).
Declaration
public TableChangedAction Action { get; }
Property Value
Type |
---|
TableChangedAction |
ColumnCount
Gets the number of columns in the table after the change.
Declaration
public int ColumnCount { get; }
Property Value
Type |
---|
System.Int32 |
RowCount
Gets the number of rows in the table after the change.
Declaration
public int RowCount { get; }
Property Value
Type |
---|
System.Int32 |