Esempio n. 1
0
        public msm_SWQLocTreat_Coeff(string pfsname)
        {
            _pfsHandle = new PFSSection(pfsname);

            Metadata = new Metadata("Metadata");
            _pfsHandle.AddSection(Metadata._pfsHandle);

            Rows = new Rows1("Rows");
            _pfsHandle.AddSection(Rows._pfsHandle);
        }
    public msm_SWQLocTreat_Coeff(string pfsname)
    {
      _pfsHandle = new PFSSection(pfsname);

      Metadata = new Metadata("Metadata" );
      _pfsHandle.AddSection(Metadata._pfsHandle);

      Rows = new Rows1("Rows" );
      _pfsHandle.AddSection(Rows._pfsHandle);

    }
    internal msm_SWQLocTreat_Coeff(PFSSection Section)
    {
      _pfsHandle = Section;

      for (int i = 1; i <= Section.GetSectionsNo(); i++)
      {
        PFSSection sub = Section.GetSection(i);
        switch (sub.Name)
        {
        case "Metadata":
          Metadata = new Metadata(sub);
          break;
        case "Rows":
          Rows = new Rows1(sub);
          break;
          default:
            _unMappedSections.Add(sub.Name);
          break;
        }
      }

    }
Esempio n. 4
0
        internal msm_SWQLocTreat_Coeff(PFSSection Section)
        {
            _pfsHandle = Section;

            for (int i = 1; i <= Section.GetSectionsNo(); i++)
            {
                PFSSection sub = Section.GetSection(i);
                switch (sub.Name)
                {
                case "Metadata":
                    Metadata = new Metadata(sub);
                    break;

                case "Rows":
                    Rows = new Rows1(sub);
                    break;

                default:
                    _unMappedSections.Add(sub.Name);
                    break;
                }
            }
        }