| KaxSchedulerNavigationComplete Event |
Occurs when a navigation command has been executed.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic event SchedulerNavigationCompleteEventHandler NavigationComplete
Public Event NavigationComplete As SchedulerNavigationCompleteEventHandler
public:
event SchedulerNavigationCompleteEventHandler^ NavigationComplete {
void add (SchedulerNavigationCompleteEventHandler^ value);
void remove (SchedulerNavigationCompleteEventHandler^ value);
}member NavigationComplete : IEvent<SchedulerNavigationCompleteEventHandler,
SchedulerNavigationCompleteEventArgs>
Value
Type:
Kettic.AspNet.ControlsSchedulerNavigationCompleteEventHandler
Remarks
You can use this event to perform custom actions when a navigation command has been processed.
Examplesvoid KaxScheduler1_NavigationComplete(object sender, SchedulerNavigationCompleteEventArgs e)
{
Label1.Text = KaxScheduler1.SelectedDate;
}Sub KaxScheduler1_NavigationComplete(sender As Object, e As SchedulerNavigationCompleteEventArgs)
Label1.Text = KaxScheduler1.SelectedDate
End SubNo code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also