Create a new empty collection of shapes.

Namespace: TallComponents.PDF.Layout.Shapes
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0

Syntax

C#
public ShapeCollection(
	double x,
	double y,
	double width,
	double height,
	double virtualWidth,
	double virtualHeight
)
Visual Basic
Public Sub New ( _
	x As Double, _
	y As Double, _
	width As Double, _
	height As Double, _
	virtualWidth As Double, _
	virtualHeight As Double _
)

Parameters

x
Type: System..::..Double
The X position (left).
y
Type: System..::..Double
The Y position (bottom).
width
Type: System..::..Double
The width of this shape with respect to parent coordinate system.
height
Type: System..::..Double
The height of this shape with respect to parent coordinate system.
virtualWidth
Type: System..::..Double
The virtual width of the virtual canvas on which child shapes are positioned.
virtualHeight
Type: System..::..Double
The virtual height of the virtual canvas on which child shapes are positioned.

See Also