PathMoveTo Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Moves the current point to specified coordinates.

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 MoveTo(
	double x,
	double y
)

Parameters

x
Type: SystemDouble
The x-coordinate.
y
Type: SystemDouble
The y-coordinate.
Examples

C#
FixedLayout.Content.Path path = new FixedLayout.Content.Path();
path.MoveTo(100,100);
See Also

Reference