Sub OnActivePadChanging(Sender: INavigationBar; Args: INavigationBarPadChangingEventArgs);
Begin
//set of operators;
End Sub OnActivePadChanging;
Sender. Parameter that returns the component that generated the event.
Args. Parameter that enables the user to determine event parameters.
The OnActivePadChanging event occurs before changing the active tab of the navigation panel.
The tab activation can be canceled by using the INavigationBarPadChangingEventArgs.Allowed property of the event argument. To do this, set the property to False.
See also: