DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
LedControlIniFileList.cs
Go to the documentation of this file.
1 using System.ComponentModel;
2 using System.Collections.Generic;
3 
4 namespace DirectOutput.GlobalConfiguration
5 {
9  public class LedControlIniFileList : List<LedControlIniFile>
10  {
16  public void Add(string Filename, int LedWizNumber)
17  {
18  LedControlIniFile I = new LedControlIniFile(Filename,LedWizNumber);
19  Add(I);
20  }
21 
26  new public void Add(LedControlIniFile LedControlIniFile)
27  {
28  base.Add(LedControlIniFile);
29 
30  }
31 
39  public bool Contains(int LedWizNumber)
40  {
41  foreach (LedControlIniFile F in this)
42  {
43  if (F.LedWizNumber == LedWizNumber) return true;
44  }
45  return false;
46 
47  }
48 
49 
50 
51 
52  }
53 }