Apitron.PDF.Kit library for .NET
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Append a straight line segment from the current point to the point (x, y). The new current point shall be (x, y).
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-coordinate. - y
- Type: SystemDouble
The y-coordinate.
Examples
C#
FixedLayout.Content.Path path = new FixedLayout.Content.Path(); path.AppendLine(200,200); page.Content.FillAndStrokePath(path);
See Also