Exemple #1
0
        public static ICustomizedProperty CreateCustomizedArrayItemProperty(string typeName, uint id, string name)
        {
            if (_Creators.ContainsKey(typeName))
            {
                TypeCreator creator = _Creators[typeName];
                return(creator.CreateCustomizedArrayItemProperty(id, name));
            }

            Debug.Check(false);
            return(null);
        }