Apitron.PDF.Kit library for .NET
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
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
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