Excel) (WebOptions 对象
包含 Microsoft Excel 在将文档另存为网页或打开网页时使用的工作簿级属性。
备注
您可以在应用程序(全局)级或在工作簿级返回或设置属性。 (请注意,属性值可能因工作簿保存时的属性值而异。) 工作簿级别的属性设置将替代应用程序级属性设置。 应用程序级属性包含在 DefaultWebOptions 对象中。
示例
使用 Workbook 对象的 WebOptions 属性可返回 WebOptions 对象。
以下示例检查是否允许 PNG (便携式网络图形) 作为图像格式,然后相应地设置 strImageFileType
变量。
Set objAppWebOptions = Workbooks(1).WebOptions
With objAppWebOptions
If .AllowPNG = True Then
strImageFileType = "PNG"
Else
strImageFileType = "JPG"
End If
End With
方法
属性
- AllowPNG
- Application
- Creator
- DownloadComponents
- Encoding
- FolderSuffix
- LocationOfComponents
- OrganizeInFolder
- Parent
- PixelsPerInch
- RelyOnCSS
- RelyOnVML
- ScreenSize
- TargetBrowser
- UseLongFileNames
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。