Outlook) (TableView.MultiLineWidth 屬性
會傳回或設定 Long 值,代表要觸發 TableView 物件中之多行模式所需的文字寬度 (以字元為單位)。 可讀寫的。
語法
expression。 MultiLineWidth
表達 代表 TableView 物件的變數。
註解
這個屬性可以設定為從 1 到 999 範圍的值。 如果這個屬性設定為小於 1 的值,則屬性會設定為 1。 如果將這個屬性的值設定為高於 999,該屬性就會設定為 999。 此屬性的預設值為 100。
只有當TableView物件的Multiline屬性設定為olWidthMultiLine時,才會套用此屬性。 此屬性的值會決定 TableView 物件以多行模式顯示 Outlook 項目之文字時的點數。
範例
下列 Visual Basic for Applications (VBA) 範例會設定目前的 TableView 物件,如此在檢視中的文字超過 50 個字元時,就會以多行模式顯示。 除非 AutomaticColumnSizing 屬性設定為 True,否則 MultiLine 屬性不得設定為 olWidthMultiLine。
Private Sub ConfigureMultiLineView()
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 TableView object so that,
' if the text in the view is longer
' than 50 characters, the text is
' displayed in multiline mode.
.AutomaticColumnSizing = True
.MultiLine = olWidthMultiLine
.MultiLineWidth = 50
' Save the table view.
.Save
End With
End If
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。