PathClosePath Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Closes the path.

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 ClosePath()
Examples

C#
FixedLayout.Content.Path path = new FixedLayout.Content.Path();
path.AppendCubicBezier(20.2, 200, 300, 30);

// close figure
path.ClosePath();
page.Content.StrokePath(path);
See Also

Reference