Outlook) (BusinessCardView.XML 属性
返回或设置一个 String 值,它指定当前视图的 XML 定义。 读/写。
语法
表达式。Xml
表达 返回 BusinessCardView 对象的表达式。
备注
XML 定义使用一系列与视图本身各种属性对应的标记和关键字来描述视图的类型。 创建视图时,通过解析 XML 定义来设置新视图。
若要确定在创建视图时应如何组织 XML,使用 Outlook 用户界面中创建的视图,然后检索该视图的 XML 属性。
示例
以下Visual Basic for Applications (VBA) 示例枚举联系人默认文件夹的 Views 集合,并显示名为“Card View”的 BusinessCardView 对象的 XML 定义。
Sub DisplayBusinessCardViewDef()
Dim objName As NameSpace
Dim objViews As Views
Dim objView As BusinessCardView
' Get the Views collection of the Contacts default folder.
Set objName = Application.GetNamespace("MAPI")
Set objViews = objName.GetDefaultFolder(olFolderContacts).Views
' Return a view called "Card View." If the view
' doesn't already exist, create it.
Set objView = objViews.Item("Card View")
If objView Is Nothing Then
Set objView = objViews.Add( _
"Card View", _
olBusinessCardView, _
olViewSaveOptionAllFoldersOfType)
End If
' Display the XML definition for the view.
' Note that the definition may be truncated
' due to the display limitations of the
' MsgBox function.
MsgBox objView.XML
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。