Font.TrackingPreset property (Publisher)

Returns or sets a PbTrackingPresetType constant representing the preset tracking type for characters in the specified font in a text range. Read/write.

Syntax

expression.TrackingPreset

expression A variable that represents a Font object.

Return value

PbTrackingPresetType

Remarks

The TrackingPreset property value can be one of the PbTrackingPresetType constants.

Loose and very loose tracking leaves ample space between characters, whereas tight and very tight tracking can produce character overlap.

Example

This example specifies tight tracking as the preset for the characters in the second story.

Sub TrackingType() 
 
 Application.ActiveDocument.Stories(2).TextRange _ 
 .Font.TrackingPreset = pbTrackingTight 
 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.