コード例 #1
0
            public tbIncotermsRow AddtbIncotermsRow(int idIncoterm, string sigla, string mstrDescricao)
            {
                tbIncotermsRow rowtbIncotermsRow = ((tbIncotermsRow)(this.NewRow()));

                rowtbIncotermsRow.ItemArray = new object[] {
                    idIncoterm,
                    sigla,
                    mstrDescricao
                };
                this.Rows.Add(rowtbIncotermsRow);
                return(rowtbIncotermsRow);
            }
コード例 #2
0
 public tbIncotermsRowChangeEvent(tbIncotermsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemovetbIncotermsRow(tbIncotermsRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddtbIncotermsRow(tbIncotermsRow row)
 {
     this.Rows.Add(row);
 }