Class ResizeArgs
Represents the information about OnResizeStart or OnResizeStop events.
Inheritance
System.Object
ResizeArgs
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ResizeArgs : Object
Remarks
This class provides details about resizing actions on elements, with the option to cancel resizing.
Constructors
ResizeArgs()
Declaration
public ResizeArgs()
Properties
Cancel
Gets or sets whether the element resize action should be cancel or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use the Cancel property to stop the resizing operation if needed.
RequestType
Gets the request type indicating the resize start or stop event.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the request type. |
Remarks
The RequestType property provides context about which resizing event (start or stop) was triggered.