Responder Developer Guide
UpdateData Event


Version: 10.2.1a

Resource Center Home

Provide an event handler for updating the application's data.
Syntax
'Declaration
 
Public Event UpdateData As EventHandler
'Usage
 
Dim instance As DataManager
Dim handler As EventHandler
 
AddHandler instance.UpdateData, handler
public event EventHandler UpdateData
Remarks
When the data changes in one portion of the application or by the application running on another computer, it is typically desirable to communicate that a change in the data has occurred to the other windows of this application. Any window interested in knowing when the data has changed can subscribe to this event and will be notified when the data has changed. If a particular local window changes the data, it can raise this event by calling the OnUpdateData method of this class which will then raise the event for the other subscribers. This design has the drawback that there is no indication of what data has changed - the event is currently raised by the middle-tier for any kind of data change.
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

DataManager Class
DataManager Members

 

 


Send Comment