Ejemplo n.º 1
0
        internal static bool IsNonMergeableInline(Type elementType)
        {
            TextElementEditingBehaviorAttribute att = (TextElementEditingBehaviorAttribute)Attribute.GetCustomAttribute(elementType, typeof(TextElementEditingBehaviorAttribute));

            if (att != null && att.IsMergeable == false)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        // Token: 0x06003BF0 RID: 15344 RVA: 0x001144D4 File Offset: 0x001126D4
        internal static bool IsNonMergeableInline(Type elementType)
        {
            TextElementEditingBehaviorAttribute textElementEditingBehaviorAttribute = (TextElementEditingBehaviorAttribute)Attribute.GetCustomAttribute(elementType, typeof(TextElementEditingBehaviorAttribute));

            return(textElementEditingBehaviorAttribute != null && !textElementEditingBehaviorAttribute.IsMergeable);
        }