Exemplo n.º 1
0
            public DropInnoRow AddDropInnoRow(bool Check, long Index, string ItemCode, string PackedNo, string ItemDesc, string NewBarcode)
            {
                DropInnoRow rowDropInnoRow = ((DropInnoRow)(this.NewRow()));

                rowDropInnoRow.ItemArray = new object[] {
                    Check,
                    Index,
                    ItemCode,
                    PackedNo,
                    ItemDesc,
                    NewBarcode
                };
                this.Rows.Add(rowDropInnoRow);
                return(rowDropInnoRow);
            }
Exemplo n.º 2
0
 public DropInnoRowChangeEvent(DropInnoRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveDropInnoRow(DropInnoRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddDropInnoRow(DropInnoRow row)
 {
     this.Rows.Add(row);
 }