Exemplo n.º 1
0
        public void Normalize()
        {
            foreach (var table in TablesSection.GetAllTables())
            {
                table.Normalize();
            }

            BlocksSection.Normalize();
            ObjectsSection.Normalize();
        }
Exemplo n.º 2
0
        public void Normalize()
        {
            EnsureStyleObjects();
            EnsureTableItems();
            foreach (var table in TablesSection.GetAllTables())
            {
                table.Normalize();
            }

            BlocksSection.Normalize();
            ObjectsSection.Normalize();
        }
        /// <summary>
        /// Конструктор
        /// </summary>
        /// <param name="path"></param>
        public Config(string path)
        {
            Path = path;
            CreateFileIfNotExists();

            Common  = new CommonSection(this);
            Charts  = new ChartsSection(this);
            Experts = new ExpertsSection(this);
            Objects = new ObjectsSection(this);
            Email   = new EmailSection(this);
            StartUp = new StartUpSection(this);
            Tester  = new TesterSection(this);
        }