BusinessCardView.Apply メソッド (Outlook)
現在のビューに BusinessCardView オブジェクトを適用します。
構文
式。適用
式BusinessCardView オブジェクトを返す式。
例
次の Visual Basic for Applications (VBA) の例を作成、保存、および新しい BusinessCardView オブジェクトに適用されます。
Sub CreateBusinessCardView()
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
' Create the new view.
Set objView = objViews.Add( _
"Card View", _
olBusinessCardView, _
olViewSaveOptionAllFoldersOfType)
' Save and apply the new view.
objView.Save
objView.Apply
End Sub
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。