WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
InsertEventArgs.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace DirectOutput.General.Generic
4 {
8  public class InsertEventArgs<Ty> : EventArgs
9  {
10 
14  public int Index { get; set; }
15 
19  public Ty Item { get; set; }
23  public InsertEventArgs() { }
29  public InsertEventArgs(int Index, Ty Item)
30  {
31  this.Index = Index;
32  this.Item = Item;
33  }
34  }
35 }
InsertEventArgs(int Index, Ty Item)
Initializes a new instance of the InsertEventArgs class.
InsertEventArgs()
Initializes a new instance of the InsertEventArgs class.
Eventargs of BeforeInsert and AfterInsert events.