BusinessCardView.XML Outlook) (屬性
會傳回或設定指定目前檢視之 XML 定義的 String 值。 讀取/寫入。
語法
運算式。Xml
表達 會傳回 BusinessCardView 物件的運算式。
註解
XML 定義會使用一系列對應檢視本身各種屬性的標籤及關鍵字,說明檢視類型。 在建立檢視時,會解析 XML 定義,呈現新檢視的設定。
若要判斷建立檢視時應該如何結構化 XML,請使用 Outlook 使用者介面建立檢視,然後擷取該檢視的 XML 屬性。
範例
下列 Visual Basic for Applications (VBA) 範例會列舉Contacts預設資料夾的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 支援與意見反應。