Método BusinessCardView.Apply (Outlook)
Aplica el objeto BusinessCardView a la vista actual.
Sintaxis
expresión. Aplicar
Expresión Expresión que devuelve un objeto BusinessCardView .
Ejemplo:
El ejemplo siguiente Visual Basic para aplicaciones (VBA) se crea, se guarda y se aplica un nuevo objeto 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
Consulte también
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.