public BaseReportSettings(BaseReportDefinition owner, XmlNode xmlNode)
        {
            this.Values  = new Dictionary <string, object>();
            this.Owner   = owner;
            this.XmlNode = xmlNode;

            // Run through all child xml nodes of the settings xml node.

            /*foreach (XmlNode xmlNodeSetting in xmlNode.ChildNodes)
             * {
             *  if (this.Values.ContainsKey(xmlNodeSetting.Attributes["Name"].Value))
             *      continue;
             *
             *  this.Values.Add(
             *      xmlNodeSetting.Attributes["Name"].Value,
             *      xmlNodeSetting.InnerXml
             *  );
             * }*/
        }
 public CrosstableSettings(BaseReportDefinition owner, XmlNode xmlNode)
     : base(owner, xmlNode)
 {
 }