'宣言 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 クラス)