Called periodically, providing an opportunity to perform some work.

Namespace:  ESRI.ArcGISExplorer.Application

Assembly:  ESRI.ArcGISExplorer.Application (in ESRI.ArcGISExplorer.Application.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public virtual void OnUpdate()
Visual Basic (Declaration)
Public Overridable Sub OnUpdate

Remarks

The OnUpdate method is called periodically by the framework once the CheckBox has been loaded, for example when the Tab where the CheckBox is displayed is shown.

This provides an opportunity to run some code periodically within your customization.

Note that as OnUpdate may be called frequently you should avoid lengthy operations in this method, as this would reduce the responsiveness of the application user interface.

See Also