Ejemplo n.º 1
0
        protected bool PropertyExists(IECClass cls, string propertyName)
        {
            if (cls == null)
            {
                return(false);
            }

            return(cls.FindProperty(propertyName) == null ? false : true);
        }
Ejemplo n.º 2
0
        protected bool PropertyExists(string clsName, string propertyName)
        {
            IECClass cls = GetClass(clsName);

            if (cls == null)
            {
                return(false);
            }

            return(cls.FindProperty(propertyName) == null ? false : true);
        }