Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1.05 KB

Publisher.TextEffectFormat.Tracking.md

File metadata and controls

45 lines (26 loc) · 1.05 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
TextEffectFormat.Tracking property (Publisher)
vbapb10.chm3735825
vbapb10.chm3735825
Publisher.TextEffectFormat.Tracking
9e110e21-be0c-ec49-6bc4-1ff210de141c
06/15/2019
medium

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

[!includeSupport and feedback]