ClippedContent Constructor (Double, Double, Double, Double)

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Initializes a new instance of the ClippedContent class with clipping.

Namespace:  Apitron.PDF.Kit.FixedLayout.Content
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public ClippedContent(
	double x,
	double y,
	double width,
	double height
)

Parameters

x
Type: SystemDouble
The x.
y
Type: SystemDouble
The y.
width
Type: SystemDouble
The width.
height
Type: SystemDouble
The height.
Examples

C#
ClippedContent content = new ClippedContent(0, 0, 100, 100);
Page page = new Page(new PageBoundary(Boundaries.A4));
page.Content.AppendContent(content);
See Also

Reference