Exemplo n.º 1
0
            public tabellina2Row Addtabellina2Row(string label, System.Decimal valore_int, string edificio, string piano, System.Decimal Lordo, System.Decimal Netto, System.Decimal Mura, long Ordine)
            {
                tabellina2Row rowtabellina2Row = ((tabellina2Row)(this.NewRow()));

                rowtabellina2Row.ItemArray = new object[] {
                    label,
                    valore_int,
                    edificio,
                    piano,
                    Lordo,
                    Netto,
                    Mura,
                    Ordine
                };
                this.Rows.Add(rowtabellina2Row);
                return(rowtabellina2Row);
            }
Exemplo n.º 2
0
 public tabellina2RowChangeEvent(tabellina2Row row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void Removetabellina2Row(tabellina2Row row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void Addtabellina2Row(tabellina2Row row)
 {
     this.Rows.Add(row);
 }