Svg.SvgViewBox.SvgViewBox C# (CSharp) Метод

SvgViewBox() публичный Метод

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.
Результат System
        public SvgViewBox(float minX, float minY, float width, float height)
            : this()
        {
            this.MinX = minX;
            this.MinY = minY;
            this.Width = width;
            this.Height = height;
        }