Class BoolEventArgs
Event arguments for a bool value.
Namespace: Evergine.Common.Helpers
Assembly: Evergine.Common.dll
Syntax
public sealed class BoolEventArgs : EventArgs
Constructors
BoolEventArgs(bool)
Initializes a new instance of the BoolEventArgs class.
Declaration
public BoolEventArgs(bool value)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | value | if set to |
Properties
Value
Gets a value indicating whether this BoolEventArgs is value.
Declaration
public bool Value { get; }
Property Value
| Type | Description |
|---|---|
| bool |
|