public CellSetDataProvider(CellSetData cs_descr, DataReorganizationTypes reorganizationType)
 {
     m_CellSet_Descr        = cs_descr;
     DataReorganizationType = reorganizationType;
     m_Columns = CreateFields(0);
     m_Rows    = CreateFields(1);
 }
		void ChangeDataReorganizationType(DataReorganizationTypes type)
		{
			if (DataReorganizationType != type)
			{
				DataReorganizationType = type;
				Initialize(m_CSDescr);
			}
		}