Svg.SvgViewBox.SvgViewBox C# (CSharp) Method

SvgViewBox() public method

Initializes a new instance of the SvgViewBox struct.
public SvgViewBox ( float minX, float minY, float width, float height ) : System
minX float The min X.
minY float The min Y.
width float The width.
height float The height.
return System
        public SvgViewBox(float minX, float minY, float width, float height)
            : this()
        {
            this.MinX = minX;
            this.MinY = minY;
            this.Width = width;
            this.Height = height;
        }