XText.XRun.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( XRun other ) : bool
other XRun
return bool
        protected bool Equals(XRun other)
        {
            return
                base.Equals(other) &&
                Equals(textBinding != null ? textBinding.Path : null, other.textBinding != null ? other.textBinding.Path : null) &&
                string.Equals(style, other.style);
        }

Same methods

XRun::Equals ( object obj ) : bool