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
OutputEventArgs.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace DirectOutput.Cab.Out
7 {
8 
12  public class OutputEventArgs : EventArgs
13  {
14 
18  public IOutput Output { get; set; }
19 
23  public int Value { get { return Output.Value; } }
24 
28  public string Name { get { return Output.Name; } }
29 
35  {
36  this.Output = Output;
37  }
38 
42  public OutputEventArgs() { }
43  }
44 }