Example #1
0
 public BoolVariableGrid(tblVariable tocopy)
     : base(tocopy)
 {
     try
     {
         tblBOOL tblbool = new tblBOOL();
         tblbool.VarNameID = this.VarNameID;
         tblbool.SelectVarID();
         this.Text0 = tblbool.Text0;
         this.Text1 = tblbool.Text1;
         Loaded     = true;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
Example #2
0
 public bool Contains(tblBOOL item)
 {
     return(List.Contains(item));
 }
Example #3
0
 public int IndexOf(tblBOOL item)
 {
     return(List.IndexOf(item));
 }
Example #4
0
 public void Insert(int index, tblBOOL item)
 {
     List.Insert(index, item);
     this.OntblBOOLChanged(EventArgs.Empty);
 }
Example #5
0
 public void Remove(tblBOOL item)
 {
     List.Remove(item);
     this.OntblBOOLChanged(EventArgs.Empty);
 }
Example #6
0
 public void Add(tblBOOL item)
 {
     List.Add(item);
     this.OntblBOOLChanged(EventArgs.Empty);
 }