/// <summary>
 /// Initializes a new instance of the <see cref="TableElement"/> class.
 /// </summary>
 public TableElement()
 {
     AssignedEffects = new AssignedEffectList();
     ValueChanged   += new EventHandler <TableElementValueChangedEventArgs>(TableElement_ValueChanged);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TableElement"/> class.
 /// </summary>
 public TableElement()
 {
     AssignedEffects = new AssignedEffectList();
     ValueChanged += new EventHandler<TableElementValueChangedEventArgs>(TableElement_ValueChanged);
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Table"/> class.
 /// </summary>
 public Table()
 {
     Effects               = new FX.EffectList();
     TableElements         = new TableElementList();
     AssignedStaticEffects = new AssignedEffectList();
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Table"/> class.
 /// </summary>
 public Table()
 {
     Effects = new FX.EffectList();
     TableElements = new TableElementList();
     AssignedStaticEffects = new AssignedEffectList();
 }