WebOptions.Encoding property (Word)

Returns or sets the document encoding (code page or character set) to be used by the web browser when you view the saved document. Read/write MsoEncoding.

Syntax

expression.Encoding

expression Required. A variable that represents a WebOptions collection.

Example

This example checks to see whether the default document encoding is Western, and then it sets the string strDocEncoding accordingly.

Dim strDocEncoding As String 
 
If Application.DefaultWebOptions.Encoding _ 
 = msoEncodingWestern Then 
 strDocEncoding = "Western" 
Else 
 strDocEncoding = "Other" 
End If

See also

WebOptions Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.