예제 #1
0
            public tabellinaRow AddtabellinaRow(string label, System.Decimal valore_int)
            {
                tabellinaRow rowtabellinaRow = ((tabellinaRow)(this.NewRow()));

                rowtabellinaRow.ItemArray = new object[] {
                    label,
                    valore_int
                };
                this.Rows.Add(rowtabellinaRow);
                return(rowtabellinaRow);
            }
예제 #2
0
 public tabellinaRowChangeEvent(tabellinaRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemovetabellinaRow(tabellinaRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddtabellinaRow(tabellinaRow row)
 {
     this.Rows.Add(row);
 }