Class ResizeEventArgs<T>
Provides the information about the resize action on appointments.
Inherited Members
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ResizeEventArgs<T>
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
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
Data
Gets the data of the resized event.
Declaration
[JsonIgnore]
public T Data { get; set; }
Property Value
| Type |
|---|
| T |
EndTime
Gets the end time of the resize clone element.
Declaration
[JsonPropertyName("endTime")]
public DateTime EndTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime | A DateTime value representing the end time of the resize clone element. |
GroupIndex
Gets the group index of the cloned element.
Declaration
[JsonPropertyName("groupIndex")]
public int GroupIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
Interval
Gets or sets the interval in minutes for resizing appointments.
Declaration
[JsonPropertyName("interval")]
public int Interval { get; set; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
MouseEventArgs
Gets the mouse event informations.
Declaration
[JsonPropertyName("event")]
public MouseEventArgs MouseEventArgs { get; set; }
Property Value
| Type | Description |
|---|---|
| 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
[JsonPropertyName("scroll")]
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
[JsonPropertyName("startTime")]
public DateTime StartTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime | A DateTime value representing the start time of the resize clone element. |