Ejemplo n.º 1
0
            public alertaddressRow AddalertaddressRow(string name, string mapiaddress)
            {
                alertaddressRow rowalertaddressRow = ((alertaddressRow)(this.NewRow()));

                rowalertaddressRow.ItemArray = new object[] {
                    name,
                    mapiaddress
                };
                this.Rows.Add(rowalertaddressRow);
                return(rowalertaddressRow);
            }
Ejemplo n.º 2
0
 public alertaddressRowChangeEvent(alertaddressRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemovealertaddressRow(alertaddressRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddalertaddressRow(alertaddressRow row)
 {
     this.Rows.Add(row);
 }