Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KeyEventArgs.cs
1
using
System;
2
3
namespace
TAG.Simulator.Events
4
{
10
public
delegate
void
KeyEventHandler
(
object
Sender,
KeyEventArgs
e);
11
15
public
class
KeyEventArgs
: EventArgs
16
{
17
private
readonly
string
name;
18
private
readonly
string
lookupValue;
19
private
string
value;
20
26
public
KeyEventArgs
(
string
Name
,
string
LookupValue
)
27
{
28
this.name =
Name
;
29
this.lookupValue =
LookupValue
;
30
this.value =
null
;
31
}
32
36
public
string
Name
=> this.name;
37
41
public
string
LookupValue
=> this.lookupValue;
42
46
public
string
Value
47
{
48
get
=> this.value;
49
set
=> this.value = value;
50
}
51
}
52
}
TAG.Simulator.Events.KeyEventArgs
Event arguments for key events.
Definition:
KeyEventArgs.cs:16
TAG.Simulator.Events.KeyEventArgs.LookupValue
string LookupValue
Key lookup value.
Definition:
KeyEventArgs.cs:41
TAG.Simulator.Events.KeyEventArgs.Value
string Value
Key value
Definition:
KeyEventArgs.cs:47
TAG.Simulator.Events.KeyEventArgs.Name
string Name
Key name
Definition:
KeyEventArgs.cs:36
TAG.Simulator.Events.KeyEventArgs.KeyEventArgs
KeyEventArgs(string Name, string LookupValue)
Event arguments for key events.
Definition:
KeyEventArgs.cs:26
TAG.Simulator.Events
Definition:
KeyEventArgs.cs:4
TAG.Simulator.Events.KeyEventHandler
delegate void KeyEventHandler(object Sender, KeyEventArgs e)
Delegate for key event handlers.
ComSim
TAG.Simulator
Events
KeyEventArgs.cs
Generated by
1.9.5