Class BoolEventArgs
Event arguments for a boolean 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 true.
Declaration
public bool Value { get; }
Property Value
Type | Description |
---|---|
bool |
|