バージョン

PrimaryInterval プロパティ

列ヘッダーの下の行に表示され、コントロールの一番小さい時間間隔を定義する DateTimeInterval 派生インスタンスを取得または設定します。
シンタックス
'宣言
 
Public Property PrimaryInterval As Infragistics.Win.UltraWinSchedule.DateTimeInterval
public Infragistics.Win.UltraWinSchedule.DateTimeInterval PrimaryInterval {get; set;}
解説

PrimaryInterval プロパティのコレクションについての詳細は、ヘルプの UltraTimelineView コントロールの PrimaryInterval プロパティの項を参照してください。

使用例
Imports Infragistics.Win.UltraWinGanttView 
Imports Infragistics.Win.UltraWinSchedule 


Private Sub SetPrimaryInterval() 
    'Define TimeInterval object and pass Interval and IntervalUnits as parameters to set Primary interval 
    
    Dim ganttTimeInterval As New TimeInterval(30, TimeIntervalUnits.Minutes) 
    Me.ultraGanttView1.TimelineSettings.PrimaryInterval = ganttTimeInterval 
    ganttTimeInterval.HeaderAppearance.BackColor = Color.Silver 
    ganttTimeInterval.HeaderTextFormat = "T" 
    ganttTimeInterval.HeaderTextFormatStyle = TimelineViewHeaderTextFormatStyle.FullRange 
    ganttTimeInterval.HeaderTextOrientation = Infragistics.Win.TextOrientationInfo.Horizontal45Degrees 

End Sub
using Infragistics.Win.UltraWinGanttView;
using Infragistics.Win.UltraWinSchedule;


private void SetPrimaryInterval()
{
	  //Define TimeInterval object and pass Interval and IntervalUnits as  parameters to set Primary interval
     
      TimeInterval ganttTimeInterval = new TimeInterval(30, TimeIntervalUnits.Minutes);
      this.ultraGanttView1.TimelineSettings.PrimaryInterval = ganttTimeInterval;
      ganttTimeInterval.HeaderAppearance.BackColor = Color.Silver;
      ganttTimeInterval.HeaderTextFormat = "T";
      ganttTimeInterval.HeaderTextFormatStyle = TimelineViewHeaderTextFormatStyle.FullRange;
      ganttTimeInterval.HeaderTextOrientation = Infragistics.Win.TextOrientationInfo.Horizontal45Degrees;
}
参照

参照

Timeline クラス
Timeline メンバ
PrimaryInterval プロパティ (UltraTimelineView クラス)