Beispiel #1
0
 //***************************************************************************
 // Class Constructors
 //
 public FormElementData()
 {
     this._children                    = new FormElementDataCollection(this);
     this._dependantKeys               = new RainstormStudios.Collections.ObjectCollection();
     this._answers                     = new FormElementDataAnswerCollection(this);
     this._style                       = new Style();
     this._font                        = this._style.Font;
     this._isDirty                     = false;
     this._hasLoadedAnswers            =
         this._hasLoadedChildren       =
             this._hasLoadedDependants = false;
 }
 //***************************************************************************
 // Class Constructors
 //
 public FormData()
 {
     this._elements = new FormElementDataCollection(null);
 }