Svg.SvgViewBox.Equals C# (CSharp) Method

Equals() public method

public Equals ( SvgViewBox other ) : bool
other SvgViewBox
return 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