Class NavigatingEventArgs
A class that holds options to control the date and view navigations.
Inheritance
System.Object
NavigatingEventArgs
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class NavigatingEventArgs : Object
Constructors
NavigatingEventArgs()
Declaration
public NavigatingEventArgs()
Properties
Action
Returns the action type either as date
or view
due to which the navigation takes place.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Cancel
Defines the cancel option.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CurrentDate
Returns the current date value after navigation takes place.
Declaration
public DateTime CurrentDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
CurrentView
Returns the active view name after the view navigation takes place.
Declaration
public View CurrentView { get; set; }
Property Value
Type | Description |
---|---|
View |
PreviousDate
Returns the date value before date navigation takes place.
Declaration
public DateTime PreviousDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
PreviousView
Returns the view name before the view navigation takes place.
Declaration
public View PreviousView { get; set; }
Property Value
Type | Description |
---|---|
View |
ViewIndex
Returns the active view index after the view navigation takes place.
Declaration
public int ViewIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |