コード例 #1
0
        private void init()
        {
            ContenttypeColumnCollection wContenttypeColumnCollection = new ContenttypeColumnCollection();
            int key = _TypeNavn_id * 10000 + _Kolonne_id;

            _col = wContenttypeColumnCollection.getAllContenttypeColumns[key];
        }
コード例 #2
0
 public ListtemplateColumn(int PListNavn_id, ContenttypeColumn Pcol)
 {
     _ListtemplateColumns = null;
     _col         = null;
     _ListNavn_id = PListNavn_id;
     _TypeNavn_id = Pcol.TypeName_id;
     _Kolonne_id  = Pcol.Kolonne_id;
 }
コード例 #3
0
        private void init()
        {
            DataTable tbl = pvMetadata.MetaUtilities.OpenDataSet("ProPurTypeColumn").Tables["row"];

            _ContenttypeColumns = new Dictionary <int, ContenttypeColumn>();
            foreach (DataRow row in tbl.Rows)
            {
                ContenttypeColumn val = new ContenttypeColumn(row);
                int key = val.TypeName_id * 10000 + val.Kolonne_id;
                _ContenttypeColumns.Add(key, val);
            }
        }