Font.NameAscii Property

Word Developer Reference

Returns or sets the font used for Latin text (characters with character codes from 0 (zero) through 127). Read/write String.

Syntax

expression.NameAscii

expression   An expression that returns a Font object.

Remarks

In the U.S. English version of Microsoft Word, the default value of this property is Times New Roman. Use the Name property to change the font that's applied to all text and that appears in the Font box on the Formatting toolbar.

Example

This example sets the font used for Latin text.

Visual Basic for Applications
  Selection.Font.NameAscii = "Century"

See Also