TableView.GridLineStyle 属性 (Outlook)
返回或设置一个 OlGridLineStyle 常量,该常量代表用于 TableView 对象中网格线的线型。 读/写。
语法
expression。 GridLineStyle
表达 一个代表 TableView 对象的变量。
示例
下面的 Visual Basic for Applications (VBA) 示例设置要显示小虚线网格的当前 表 对象的 GridLineStyle 属性。
Private Sub SetDottedGridLines()
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
With objTableView
' Set the GridLineStyle property so that
' the grid in the table view are
' displayed with thin dotted lines.
.GridLineStyle = olGridLineSmallDots
' Save the table view.
.Save
End With
End If
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。