次の方法で共有


TimelineView.MaxLabelWidth プロパティ (Outlook)

TimelineView オブジェクト内の Outlook アイテムのラベルの最大長 (文字数) を表す Long 値を設定を取得または取得します。 値の取得と設定が可能です。

構文

MaxLabelWidth

TimelineView オブジェクトを表す変数。

注釈

このプロパティには 0 から 132 までの範囲内の値を設定できます。 0 未満の値に設定すると、このプロパティは 0 に設定されます。 132 を超える値を設定すると 132 に設定されます。 このプロパティの既定値は 80 です。

このプロパティを 0 に設定すると、Outlook アイテムのラベルはビューに表示されません。

次の Visual Basic for Applications (VBA) の例では、Outlook アイテムを月単位で 40 文字までのラベルを持つタイムライン スケールの下部に週の番号ラベルを表示するのには、現在の TimelineView オブジェクトを構成します。

Private Sub ConfigureMonthTimelineView() 
 
 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 
 
 
 
 ' Configure the TimelineView object so that it displays 
 
 ' Outlook items by month and week, displaying labels 
 
 ' no larger than 40 characters for Outlook items 
 
 ' displayed in the view. 
 
 With objTimelineView 
 
 ' Display items by month. 
 
 .TimelineViewMode = olTimelineViewMonth 
 
 ' Display week numbers. If this value is 
 
 ' set to False when TimelineViewMode is 
 
 ' set to olTimelineViewMonth, the day 
 
 ' numbers are displayed instead. 
 
 .ShowWeekNumbers = True 
 
 ' Display labels for Outlook items 
 
 ' while TimelineViewMode is set to 
 
 ' olTimelineViewMonth. 
 
 .ShowLabelWhenViewingByMonth = True 
 
 ' Show no more than the first 40 characters 
 
 ' for each Outlook item in the view. 
 
 .MaxLabelWidth = 40 
 
 
 
 ' Save and apply the view. 
 
 .Save 
 
 .Apply 
 
 End With 
 
 End If 
 
 
 
End Sub

関連項目

TimelineView オブジェクト

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。