Options.DefaultTextEncoding Property

Word Developer Reference

Returns or sets an MsoEncoding constant representing the code page, or character set, that Microsoft Word uses for all documents saved as encoded text files. Read/write.

Syntax

expression.DefaultTextEncoding

expression   Required. A variable that represents an Options collection.

Remarks

Use the TextEncoding property to set the encoding for an individual document. To set encoding for HTML documents, use the Encoding property.

Example

This example sets the global text encoding to the Western code page. This means that Word will save all encoded text files using the Western code page.

Visual Basic for Applications
  Sub DefaultEncode()
    Application.Options.DefaultTextEncoding = msoEncodingWestern
End Sub

See Also