예제 #1
0
        public static ICustomizedProperty CreateProperty(string typeName, uint propId, string propName, string valueStr)
        {
            if (_Creators.ContainsKey(typeName))
            {
                TypeCreator creator = _Creators[typeName];
                return(creator.CreateProperty(propId, propName, valueStr));
            }

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