Class NavigatingEventArgs
Provides the information about the date and view navigation actions in the scheduler.
Inherited Members
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class NavigatingEventArgs
Constructors
NavigatingEventArgs()
Declaration
public NavigatingEventArgs()
Properties
ActionType
Gets the type of ActionType that determines how navigation occurs, either as date navigation or view navigation.
Declaration
public ActionType ActionType { get; }
Property Value
| Type | Description |
|---|---|
| ActionType | A value of the ActionType enum that specifies how navigation occurs. |
Cancel
Gets or sets whether the navigation action of Scheduler should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
CurrentDate
Gets or sets the current date value after navigation has occurred.
Declaration
public DateTime CurrentDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime | A DateTime object representing the current date value after navigation. |
CurrentView
Gets or sets the name of the active view after view navigation has occurred.
Declaration
public View CurrentView { get; set; }
Property Value
| Type | Description |
|---|---|
| View | A value of the View enum representing the name of the active view. |
PreviousDate
Gets the date value before date navigation has occurred.
Declaration
public DateTime PreviousDate { get; }
Property Value
| Type | Description |
|---|---|
| DateTime | A DateTime object representing the previous date value before navigation. |
PreviousView
Gets the name of the view before view navigation has occurred.
Declaration
public View PreviousView { get; }
Property Value
| Type | Description |
|---|---|
| View | A value of the View enum representing the name of view before navigation. |
ViewIndex
Gets the index of the active view after view navigation has occurred.
Declaration
public int ViewIndex { get; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |