Пример #1
0
        internal bool SkipNotify()
        {
            XObject o = this;

            while (true)
            {
                while (o != null && o.annotations == null)
                {
                    o = o.parent;
                }
                if (o == null)
                {
                    return(true);
                }
                if (o.Annotations <XObjectChangeAnnotation>() != null)
                {
                    return(false);
                }
                o = o.parent;
            }
        }