SchedulerResizeEvent
Event arguments passed to drag lifecycle callbacks (onDragStart, onDrag, onDragStop). Handlers can modify properties like cancel, interval, or scrolling behavior to control the drag operation.
Props
The following table outlines the props for the SchedulerResizeEvent:
| Name | Type | Default | Description |
|---|---|---|---|
| cancel | boolean | - | Set to true to prevent the resize operation and revert to the original event duration. |
| data | - | Contains the event data being resized. | |
| endTime | Date | - | The proposed new end time after resizing. Can be modified by handlers to enforce custom business logic. |
| event | MouseEvent | TouchEvent | - | The native mouse or touch event triggering the resize action. |
| startTime | Date | - | The proposed new start time after resizing. Can be modified by handlers to enforce custom business logic. |