BusinessCardView.Apply method (Outlook)
Applies the BusinessCardView object to the current view.
Syntax
expression.Apply
expression An expression that returns a BusinessCardView object.
Example
The following Visual Basic for Applications (VBA) example creates, saves, and applies a new BusinessCardView object.
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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.