Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.04 KB

Excel.Application.DefaultWebOptions.md

File metadata and controls

36 lines (26 loc) · 1.04 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.DefaultWebOptions property (Excel)
vbaxl10.chm133247
vbaxl10.chm133247
Excel.Application.DefaultWebOptions
51524888-0812-85ee-c8f9-e14d9b558f57
04/04/2019
medium

Application.DefaultWebOptions property (Excel)

Returns the DefaultWebOptions object that contains global application-level attributes used by Microsoft Excel whenever you save a document as a webpage or open a webpage. Read-only.

Syntax

expression.DefaultWebOptions

expression A variable that represents an Application object.

Example

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

If Application.DefaultWebOptions.Encoding = msoEncodingWestern Then 
 strDocEncoding = "Western" 
Else 
 strDocEncoding = "Other" 
End If

[!includeSupport and feedback]