TimelineView.ItemFont 属性 (Outlook)
返回一个 ViewFont 对象,该对象代表在 TimelineView 对象中显示 Outlook 项目时使用的字体。 只读。
语法
expression。 ItemFont
表达 一个代表 TimelineView 对象的变量。
示例
以下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
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。