TextEffectFormat.Tracking property (Publisher)
Returns or sets a Variant indicating the tracking value used to display space between the characters in the specified text range. Read/write.
Syntax
expression.Tracking
expression A variable that represents a TextEffectFormat object.
Remarks
Valid range is a float value between 0.0 and 5.0 points. Setting the property to 0.0 disables tracking. Indeterminate values are returned as -2.
Example
This example disables tracking in the second story by setting the Tracking property to zero.
Sub DisableTracking()
Application.ActiveDocument.Stories(2).TextRange.Font.Tracking = 0.0
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.