Exemplo n.º 1
0
 public POUObject(tblPou tocopy)
 {
     pouName         = tocopy.pouName;
     Description     = tocopy.Description;
     Type            = tocopy.Type;
     triggerSignalID = tocopy.triggerSignalID;
     executiontype   = tocopy.executiontype;
     Language        = tocopy.Language;
 }
Exemplo n.º 2
0
 public bool Contains(tblPou item)
 {
     return(List.Contains(item));
 }
Exemplo n.º 3
0
 public int IndexOf(tblPou item)
 {
     return(List.IndexOf(item));
 }
Exemplo n.º 4
0
 public void Insert(int index, tblPou item)
 {
     List.Insert(index, item);
     this.OntblPouChanged(EventArgs.Empty);
 }
Exemplo n.º 5
0
 public void Remove(tblPou item)
 {
     List.Remove(item);
     this.OntblPouChanged(EventArgs.Empty);
 }
Exemplo n.º 6
0
 public void Add(tblPou item)
 {
     List.Add(item);
     this.OntblPouChanged(EventArgs.Empty);
 }
Exemplo n.º 7
0
 public tblFBDPinConnectionCollection(tblPou _parent)
 {
     _pouID_tblPou = _parent;
 }
Exemplo n.º 8
0
 public tblFBDBlockCollection(tblPou _parent)
 {
     _pouID_tblPou = _parent;
 }
Exemplo n.º 9
0
 public tblVariableCollection(tblPou _parent)
 {
     _pouID_tblPou = _parent;
 }