コード例 #1
0
 public SpellEffectBasesRowChangeEvent(SpellEffectBasesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #2
0
 public void AddSpellEffectBasesRow(SpellEffectBasesRow row)
 {
     this.Rows.Add(row);
 }
コード例 #3
0
 public void RemoveSpellEffectBasesRow(SpellEffectBasesRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public SpellEffectBaseRow AddSpellEffectBaseRow(string Id, string Name, string Description, string AffectAttribute, SpellEffectBasesRow parentSpellEffectBasesRowBySpellEffectBases_SpellEffectBase)
 {
     SpellEffectBaseRow rowSpellEffectBaseRow = ((SpellEffectBaseRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Id,
             Name,
             Description,
             AffectAttribute,
             null,
             null};
     if ((parentSpellEffectBasesRowBySpellEffectBases_SpellEffectBase != null)) {
         columnValuesArray[5] = parentSpellEffectBasesRowBySpellEffectBases_SpellEffectBase[0];
     }
     rowSpellEffectBaseRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowSpellEffectBaseRow);
     return rowSpellEffectBaseRow;
 }