Returns or sets a Variant indicating the tracking value used to display space between the characters in the specified text range. Read/write.
expression. Tracking
_expression_A variable that represents a TextEffectFormat object.
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.
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