Class CheckStateChangedEventArgs
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
- API Level:
- preview
It inherits System.EventArgs. The CheckStateChangedEventArgs is an EventArgs to record the check's state. Include the old state and the new state.
C#Copypublic class CheckStateChangedEventArgs : EventArgs
- Inheritance
Constructors
View Source
CheckStateChangedEventArgs(Boolean, Boolean)
Creates and initializes a new instance of the CheckStateChangedEventArgs class.
Declaration
C#Copypublic CheckStateChangedEventArgs(bool oldState, bool newState)
Parameters
Type | Name | Description |
---|---|---|
Boolean | oldState | Old state of check to use this CheckStateChangedEventArgs. |
Boolean | newState | New state of check to use this CheckStateChangedEventArgs. |
API Level: preview
Properties
Declaration
C#Copypublic bool NewState { get; }
Property Value
Type | Description |
---|---|
Boolean |
API Level: preview
Declaration
C#Copypublic bool OldState { get; }
Property Value
Type | Description |
---|---|
Boolean |