DefaultWebOptions 对象 (Excel)
包含 Microsoft Excel 在将文档另存为网页或打开网页时使用的全局应用程序级别属性。 您可以在应用程序(全局)级或在工作簿级返回或设置属性。
备注
工作簿级的属性设置会重写应用程序级的属性设置。 工作簿级属性包含在 WebOptions 对象中。
注意
由于保存工作簿时的属性值可能不同,所以不同工作簿的属性值也可能不同。
示例
使用 Application 对象的 DefaultWebOptions 属性可返回 DefaultWebOptions 对象。 以下示例检查是否允许 PNG(可移植网络图形)作为一种图像格式,并根据检查结果设置 strImageFileType 变量。
Set objAppWebOptions = Application.DefaultWebOptions
With objAppWebOptions
If .AllowPNG = True Then
strImageFileType = "PNG"
Else
strImageFileType = "JPG"
End If
End With
属性
- AllowPNG
- AlwaysSaveInDefaultEncoding
- Application
- CheckIfOfficeIsHTMLEditor
- Creator
- DownloadComponents
- Encoding
- FolderSuffix
- Fonts
- LoadPictures
- LocationOfComponents
- OrganizeInFolder
- Parent
- PixelsPerInch
- RelyOnCSS
- RelyOnVML
- SaveHiddenData
- SaveNewWebPagesAsWebArchives
- ScreenSize
- TargetBrowser
- UpdateLinksOnSave
- UseLongFileNames
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。