Outlook) (TableView.GridLineStyle 屬性
會傳回或設定 OlGridLineStyle 常數,代表 TableView 物件中用於格線的線條樣式。 讀取/寫入。
語法
expression。 GridLineStyle
表達 代表 TableView 物件的變數。
範例
下列 Visual Basic for Applications (VBA) 範例會設定目前 TableView 物件的 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 支援與意見反應。