Table of Contents

Constructor SvgRectF

Namespace
SharpVectors.Dom.Svg
Assembly
SharpVectors.Core.dll

SvgRectF(float, float, float, float)

Initializes a new instance of the SvgRectF structure with the specified location and size.

public SvgRectF(float x, float y, float width, float height)

Parameters

x float

The x-coordinate of the upper-left corner of the rectangle.

y float

The y-coordinate of the upper-left corner of the rectangle.

width float

The width of the rectangle.

height float

The height of the rectangle.

SvgRectF(SvgPointF, SvgSizeF)

Initializes a new instance of the SvgRectF structure with the specified location and size.

public SvgRectF(SvgPointF location, SvgSizeF size)

Parameters

location SvgPointF

A SvgPointF that represents the upper-left corner of the rectangular region.

size SvgSizeF

A SvgSizeF that represents the width and height of the rectangular region.