バージョン

オーナー ヘッダーのスタイル

このトピックは、WinTimelineView™ で行ヘッダーをスタイルする方法について示します。 行ヘッダーはオーナー(たとえば、人物、部署または事業体)を表します。 オーナー ヘッダー テキストの方向を修正、ヘッダー外観を変更、さらにオーナーのスクロールバーを表示することができます。 WinTimelineView コントロールの OwnerHeaderTextOrientation および OwnerHeaderAppearance プロパティを使用して、オーナー ヘッダー テキストの方向およびヘッダー外観設定を適用できます。

このトピックは、オーナーおよびタイムスロットに関連付けられた ultraTimeLineView コントロールがフォームにドロップされていることを前提とします。 オーナーおよびタイムスロットでの WinTimelineView コントロールの作成についての詳細は、 「WinTimelineView に複数オーナーを指定」および 「WinTimelineView に時間/日の間隔を設定」トピックを参照してください。

Visual Basic の場合:

' オーナーのヘッダー テキストの方向を設定します
Me.ultraTimelineView1.OwnerHeaderTextOrientation = TextOrientationInfo.Horizontal45Degrees
' オーナー ヘッダーの背景色を設定します
Me.ultraTimelineView1.OwnerHeaderAppearance.BackColor = Color.Yellow
Me.ultraTimelineView1.OwnerScrollBarVisibility = TimelineViewOwnerScrollBarVisibility.ShowOnlyWhenNeeded

C# の場合:

// オーナーのヘッダー テキストの方向を設定します
this.ultraTimelineView1.OwnerHeaderTextOrientation = TextOrientationInfo.Horizontal45Degrees;
// オーナー ヘッダーの背景色を設定します
this.ultraTimelineView1.OwnerHeaderAppearance.BackColor = Color.Yellow;
this.ultraTimelineView1.OwnerScrollBarVisibility = TimelineViewOwnerScrollBarVisibility.ShowOnlyWhenNeeded;
WinTimelineView Styling Owner Headers.png