Partager via


Font.DisableCharacterSpaceGrid Property (Word)

True if Microsoft Word ignores the number of characters per line for the corresponding Font object. Read/write Boolean.

Syntax

expression .DisableCharacterSpaceGrid

expression A variable that represents a Font object.

Remarks

This property returns wdUndefined if the DisableCharacterSpaceGrid property is set to True for only some of the specified text.

Example

This example signals Microsoft Word to ignore the number of characters per line for the selected text.

With Selection.Font 
 .DisableCharacterSpaceGrid = True 
End With

See Also

Concepts

Font Object

Font Object Members