Пример #1
0
        public static Type GetComputedStyleType(string name)
        {
            StylePropertyId id;
            bool            flag = StylePropertyUtil.s_NameToId.TryGetValue(name, out id);
            Type            result;

            if (flag)
            {
                bool flag2 = !StyleDebug.IsShorthandProperty(id);
                if (flag2)
                {
                    result = StyleDebug.GetComputedStyleType(id);
                    return(result);
                }
            }
            result = null;
            return(result);
        }