Sub OnUpdate(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnUpdate;
Sub OnUpdate(sender: System.Object; e: System.EventArgs);
Begin
//set of operators;
End Sub OnUpdate;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to determine event parameters.
The OnUpdate event occurs when the ribbon control element is updated.
On ribbon update the Ribbon.OnUpdate event is fired for the Ribbon component. The OnUpdate event of a specific control occurs after the Ribbon.OnChange event for the entire ribbon.
See also: