Exemplo n.º 1
0
            public LootTemplateRow AddLootTemplateRow(string LootTemplate_ID, string TemplateName, string ItemTemplateID, int Chance)
            {
                LootTemplateRow rowLootTemplateRow = ((LootTemplateRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    LootTemplate_ID,
                    TemplateName,
                    ItemTemplateID,
                    Chance
                };
                rowLootTemplateRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowLootTemplateRow);
                return(rowLootTemplateRow);
            }
 public LootTemplateRowChangeEvent(LootTemplateRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveLootTemplateRow(LootTemplateRow row) {
     this.Rows.Remove(row);
 }
 public void AddLootTemplateRow(LootTemplateRow row) {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public LootTemplateRowChangeEvent(LootTemplateRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 6
0
 public void RemoveLootTemplateRow(LootTemplateRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 7
0
 public void AddLootTemplateRow(LootTemplateRow row)
 {
     this.Rows.Add(row);
 }