protected bool Equals(CommonTileBrush other)
 {
     return(other != null &&
            base.Equals(other) &&
            AlignmentX == other.AlignmentX &&
            AlignmentY == other.AlignmentY &&
            Stretch == other.Stretch &&
            TileMode == other.TileMode &&
            ViewBox.Equals(other.ViewBox) &&
            ViewBoxUnits == other.ViewBoxUnits &&
            ViewPort.Equals(other.ViewPort) &&
            ViewPortUnits == other.ViewPortUnits);
 }