Class ResizeEventArgs<T>
Provides the information about the resize action on appointments.
Inheritance
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ResizeEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The type of the value of schedule events. |
Constructors
ResizeEventArgs()
Declaration
public ResizeEventArgs()
Properties
Cancel
Gets or sets whether the resize action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Data
Gets the data of the resized event.
Declaration
public T Data { get; set; }
Property Value
Type |
---|
T |
EndTime
Gets the end time of the resize clone element.
Declaration
public DateTime EndTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | A System.DateTime value representing the end time of the resize clone element. |
GroupIndex
Gets the group index of the cloned element.
Declaration
public int GroupIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
Interval
Gets or sets the interval in minutes for resizing appointments.
Declaration
public int Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
MouseEventArgs
Gets the mouse event informations.
Declaration
public MouseEventArgs MouseEventArgs { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | A MouseEventArgs object representing the mouse event information. |
Scroll
Gets or sets the scroll-related actions that occur when resizing to the edges of the scheduler.
Declaration
public ScrollOptions Scroll { get; set; }
Property Value
Type | Description |
---|---|
ScrollOptions | A ScrollOptions value representing the scroll-related actions that occur when resizing to the edges. |
StartTime
Gets the start time of the resize clone element.
Declaration
public DateTime StartTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | A System.DateTime value representing the start time of the resize clone element. |