Ejemplo n.º 1
0
            public datosRow AdddatosRow(int TareaAlertaID, string Descripcion, int Valor)
            {
                datosRow rowdatosRow = ((datosRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    TareaAlertaID,
                    Descripcion,
                    Valor
                };
                rowdatosRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowdatosRow);
                return(rowdatosRow);
            }
Ejemplo n.º 2
0
 public datosRowChangeEvent(datosRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemovedatosRow(datosRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AdddatosRow(datosRow row)
 {
     this.Rows.Add(row);
 }