Inheritance: XInline
Esempio n. 1
0
File: XRun.cs Progetto: WELL-E/XText
 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));
 }
Esempio n. 2
0
 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);
 }