Exemplo n.º 1
0
 public VariableRow AddVariableRow(int Index, string Description, SpellEffectBaseRow parentSpellEffectBaseRowBySpellEffectBase_Variable)
 {
     VariableRow rowVariableRow = ((VariableRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Index,
             Description,
             null};
     if ((parentSpellEffectBaseRowBySpellEffectBase_Variable != null)) {
         columnValuesArray[2] = parentSpellEffectBaseRowBySpellEffectBase_Variable[4];
     }
     rowVariableRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowVariableRow);
     return rowVariableRow;
 }
Exemplo n.º 2
0
 public void RemoveSpellEffectBaseRow(SpellEffectBaseRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 3
0
 public SpellEffectBaseRowChangeEvent(SpellEffectBaseRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemplo n.º 4
0
 public void AddSpellEffectBaseRow(SpellEffectBaseRow row)
 {
     this.Rows.Add(row);
 }