ViewFont 对象 (Outlook)
代表设置视图不同部分中文本的格式时使用的字体。
备注
下列对象使用 ViewFont 对象来代表应用于视图的不同部分中的文本的字体格式信息︰
BusinessCardView 对象的 HeadingsFont 属性。
CalendarView 对象的 DayWeekFont 、 DayWeekTimeFont 和 MonthFont 属性。
CardView 对象的 BodyFont 和 HeadingsFont 属性。
TableView 对象的 AutoPreviewFont 、 ColumnFont 和 RowFont 属性。
TimelineView 对象的 ItemFont 、 LowerScaleFont 和 UpperScaleFont 属性。
示例
以下Visual Basic for Applications (VBA) 示例递增从当前 TimelineView 对象的 ItemFont 属性返回的 ViewFont 对象的 Size 属性值。
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
属性
名称 |
---|
Application |
Bold |
类 |
Color |
ExtendedColor |
Italic |
名称 |
Parent |
Session |
Size |
Strikethrough |
Underline |
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。