TableView.AutoPreviewFont property (Outlook)
Returns a ViewFont object that represents the font used when automatically previewing Outlook items in the TableView object. Read-only.
Syntax
expression. AutoPreviewFont
expression A variable that represents a TableView object.
Example
The following Visual Basic for Applications (VBA) sample decrements the value of the Size property for the ViewFont object returned from the AutoPreviewFont property for the current TableView object.
Private Sub ReduceAutoPreviewFontSize()
Dim objTableView As TableView
If Application.ActiveExplorer.CurrentView.ViewType = _
olTableView Then
' Obtain a TableView object reference for the
' current table view.
Set objTableView = _
Application.ActiveExplorer.CurrentView
' Decrement the Size property of the
' ViewFont object obtained from the
' AutoPreviewFont property, but only
' if the font is 6 points or larger.
If objTableView.AutoPreviewFont.Size > 5 Then
objTableView.AutoPreviewFont.Size = _
objTableView.AutoPreviewFont.Size - 1
' Save the table view.
objTableView.Save
End If
End If
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.