TextObjectSetWordSpacing Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Sets the word 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 SetWordSpacing(
	double wordSpacing
)

Parameters

wordSpacing
Type: SystemDouble
The word spacing.
Remarks

Examples

C#
TextObject text = new TextObject(StandardFonts.HelveticaBold, 11);
text.SetTextRenderingMode(RenderingMode.FillAndStrokeText);
text.SetWordSpacing(5.0);
See Also

Reference