TextObjectSetCharacterSpacing Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Sets the character spacing.

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 SetCharacterSpacing(
	double characterSpace
)

Parameters

characterSpace
Type: SystemDouble
The character space.
Remarks

Examples

C#
TextObject text = new TextObject(StandardFonts.HelveticaBold, 11);
text.SetTextRenderingMode(RenderingMode.FillText);
text.SetCharacterSpacing(1.33);
See Also

Reference