Ejemplo n.º 1
0
        private void init()
        {
            ContenttypeColumnCollection wContenttypeColumnCollection = new ContenttypeColumnCollection();
            int key = _TypeNavn_id * 10000 + _Kolonne_id;

            _col = wContenttypeColumnCollection.getAllContenttypeColumns[key];
        }
Ejemplo n.º 2
0
 public void MetadataInit()
 {
     _columns                  = new columnCollection();
     _contenttypes             = new contenttypeCollection();
     _listtemplates            = new listtemplateCollection();
     _ContenttypeColumns       = new ContenttypeColumnCollection();
     _ListtemplateContenttypes = new ListtemplateContenttypeCollection();
     _ListtemplateColumns      = new ListtemplateColumnCollection();
 }
Ejemplo n.º 3
0
        private void init()
        {
            ContenttypeColumnCollection MASTERtypecolumns = new ContenttypeColumnCollection();

            _ContenttypeColumns = new Dictionary <int, ContenttypeColumn>();

            foreach (ContenttypeColumn MASTERtypecolumn in MASTERtypecolumns.getAllContenttypeColumns.Values)
            {
                if (MASTERtypecolumn.TypeName_id == _id)
                {
                    _ContenttypeColumns.Add(MASTERtypecolumn.Kolonne_id, MASTERtypecolumn);
                }
            }
        }