Objeto ViewFont (Outlook)
Representa la fuente que se utiliza cuando se da formato al texto en diversas partes de una vista.
Comentarios
El objeto ViewFont se utiliza los siguientes objetos para representar la información de formato de fuente aplicado al texto en diversas partes de una vista:
La propiedad HeadingsFont del objeto BusinessCardView.
Las propiedades DayWeekFont, DayWeekTimeFont y MonthFont del objeto CalendarView.
Las propiedades BodyFont y HeadingsFont del objeto CardView.
Las propiedades AutoPreviewFont, ColumnFont y RowFont del objeto TableView.
Las propiedades ItemFont, LowerScaleFont y UpperScaleFont del objeto TimelineView.
Ejemplo:
El siguiente de Visual Basic para Aplicaciones muestra (VBA) se incrementa el valor de la propiedad Size para el objeto ViewFont devuelto por la propiedad ItemFont para el objeto TimelineView actual.
Private Sub IncreaseItemFontSize()
Dim objTimelineView As TimelineView
If Application.ActiveExplorer.CurrentView.ViewType = _
olTimelineView Then
' Obtain a TimelineView object reference for the
' current timeline view.
Set objTimelineView = _
Application.ActiveExplorer.CurrentView
' Increment the Size property of the
' ViewFont object obtained from the
' ItemFont property, but only
' if the font is less than 24 points
' in size.
If objTimelineView.ItemFont.Size < 24 Then
objTimelineView.ItemFont.Size = _
objTimelineView.ItemFont.Size + 1
' Save the timeline view.
objTimelineView.Save
End If
End If
End Sub
Propiedades
Nombre |
---|
Application |
Bold |
Class |
Color |
ExtendedColor |
Italic |
Name |
Parent |
Session |
Size |
Strikethrough |
Underline |
Consulte también
Referencia del modelo de objetos de Outlook
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.