Explorer.HTMLDocument 属性 (Outlook)
返回一个 HTMLDocument 对象,指定与当前视图 (假定存在) 中的 HTML 文档相关联的 HTML 对象模型。 此为只读属性。
语法
expression。 HTMLDocument
表达 一个代表“Explorer”对象的变量。
备注
若要使用此属性,文件夹必须使用文件夹主页,或者可以将 Folder 对象的 WebViewURL 属性设置为网页。
示例
下面的 Microsoft Visual Basic for Applications (VBA) 示例访问 Microsoft Outlook 视图控件。
Sub GetHTML()
'Returns the Outlook View Control
Dim objVC As OLXLib.ViewCtl
Dim objExp As Outlook.Explorer
Dim HTMLDoc As MSHTML.HTMLDocument
'Reference the current folder
Set objExp = Application.ActiveExplorer
'Reference the HTML file that is the home page
Set HTMLDoc = objExp.HTMLDocument
'Reference an Outlook View Control that is on the HTML page
Set objVC = HTMLDoc.all.tags("object").Item(0).Object
'Have the control display an address book window
objVC.AddressBook
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。