Skip to content

Latest commit

 

History

History
31 lines (14 loc) · 706 Bytes

9e110e21-be0c-ec49-6bc4-1ff210de141c.md

File metadata and controls

31 lines (14 loc) · 706 Bytes

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