DirectOuput Framework R2
DirectOutput framework R2 for virtual pinball cabinets
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
TableElementValueChangedEventArgs.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace DirectOutput.Table
4 {
8  public class TableElementValueChangedEventArgs : EventArgs
9  {
16  public TableElement TableElement { get; set; }
23  public int Number { get { return TableElement.Number; } }
30  public int Value { get { return TableElement.Value; } }
37  public string Name { get { return TableElement.Name; } }
38 
44  {
45  this.TableElement = TableElement;
46  }
47 
52  }
53 }