ClippedContentAppendContent Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Appends the content.

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 void AppendContent(
	ClippedContent content
)

Parameters

content
Type: Apitron.PDF.Kit.FixedLayout.ContentClippedContent
The content.
Examples

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

Reference