PageTransform Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Adds an initial content transfomation.

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

public void Transform(
	double a,
	double b,
	double c,
	double d,
	double e,
	double f
)

Parameters

a
Type: SystemDouble
A.
b
Type: SystemDouble
The b.
c
Type: SystemDouble
The c.
d
Type: SystemDouble
The d.
e
Type: SystemDouble
The e.
f
Type: SystemDouble
The f.
Examples

C#
// Transform 3rd page
Page page3 = document.Pages[2];
page3.Transform(0.5, 0, 0, 0.5, 0, 0);
page3.Transform(1, 0, 0, 1, 100, 100);
See Also

Reference