ArcFM Engine Developer Guide
ApplicationInitializing Event


The event that is raised to allow listeners to perform whatever initialization operations they desire before any application objects have been created.
Syntax
'Declaration
 
Public Event ApplicationInitializing As EventHandler(Of SplashEventArgs)
'Usage
 
Dim instance As MainApp
Dim handler As EventHandler(Of SplashEventArgs)
 
AddHandler instance.ApplicationInitializing, handler
public event EventHandler<SplashEventArgs> ApplicationInitializing
Event Data

The event handler receives an argument of type SplashEventArgs containing data related to this event. The following SplashEventArgs properties provide information specific to this event.

PropertyDescription
SplashScreenReturns the splash screen to use for reporting initialization progress.  
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

MainApp Class
MainApp Members

 

 


Send Comment