ConfigLoader.PropertyStatusEventHandler
This is the data type of the PropertyStatusEvent member. A variable can be defined as this type and assigned a value of a function.
Version History
Introduced in MPX 2.0.
Result
Void
Arguments
|
Argument |
Type |
Description |
sender |
ConfigLoader |
The object that triggered the event. |
e |
ConfigLoadPropertyStatusEventArgs |
An object that contains the event data. |
|
Visual Basic
Syntax
Delegate Sub PropertyErrorEventHandler(ByVal sender As Mpx.ConfigLoader, ByVal args As Mpx.ConfigLoadPropertyErrorEventArgs)
Sample Code
|
Dim loader As Mpx.ConfigLoader = New Mpx.ConfigLoader()
Dim loaderPropertyErrorEvent As
Mpx.ConfigLoader.PropertyErrorEventHandler
= AddressOf OnLoadPropertyError
AddHandler loader.PropertyErrorEvent, loaderPropertyErrorEvent |
Sample Application
C#
Syntax
delegate void PropertyStatusEventHandler (
ConfigLoader sender,
ConfigLoadPropertyStausEventArgs e
)
Sample Code
|
Mpx.ConfigLoader loader = new Mpx.ConfigLoader();
Mpx.ConfigLoader.PropertyStatusEventHandler loaderPropertyStatusEvent;
loaderPropertyStatusEvent = OnLoadPropertyStatus;
loader.PropertyStatusEvent += loaderPropertyStatusEvent;
|
See Also
ConfigLoader
PropertyStatusEvent
ConfigLoadPropertyStatusEventArgs
ConfigLoadPropertyStatusEventArgs_Class_1
|