Esempio n. 1
0
 public VariableValueRow AddVariableValueRow(string Index, decimal Value, SpellEffectRow parentSpellEffectRowBySpellEffect_VariableValue)
 {
     VariableValueRow rowVariableValueRow = ((VariableValueRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Index,
             Value,
             null};
     if ((parentSpellEffectRowBySpellEffect_VariableValue != null)) {
         columnValuesArray[2] = parentSpellEffectRowBySpellEffect_VariableValue[1];
     }
     rowVariableValueRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowVariableValueRow);
     return rowVariableValueRow;
 }
Esempio n. 2
0
 public void RemoveSpellEffectRow(SpellEffectRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 3
0
 public SpellEffectRowChangeEvent(SpellEffectRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 4
0
 public void AddSpellEffectRow(SpellEffectRow row)
 {
     this.Rows.Add(row);
 }