Svg.SvgViewBox.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( SvgViewBox other ) : bool
other SvgViewBox
Résultat bool
        public bool Equals(SvgViewBox other)
        {
            return this.MinX == other.MinX
                && this.MinY == other.MinY
                && this.Width == other.Width
                && this.Height == other.Height;
        }

Same methods

SvgViewBox::Equals ( object obj ) : bool