'Declaration
Public Event StateChange As StateChangeEventHandler
public event StateChangeEventHandler StateChange
public event StateChange: StateChangeEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event StateChangeEventHandler* StateChange
Event Data
The event handler receives an argument of type StateChangeEventArgs containing data related to this event. The following StateChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CurrentState | |
OriginalState |
Requirements
.NET Framework
Version 4.6.2 or later
See Also