'宣言 Public Property CurrentTimeIndicatorVisible As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean CurrentTimeIndicatorVisible {get; set;}
この UltraDayView コントロールに関連付けられた UltraScheduleControlBase.CalendarLook の ViewStyle プロパティが Standardに設定されると、CurrentTimeIndicatorVisible プロパティは Falseに解決されます。ViewStyle が Office2003に解決されると、CurrentTimeIndicatorVisible プロパティは Trueに解決されます。もちろんこのプロパティは、現在の表示スタイルにかかわらず、True または False に明示的に設定できます。
注: Office2003 の表示スタイルを有効にするには、この UltraDayView コントロールに関連付けられた UltraCalendarLook オブジェクトの ViewStyle プロパティを DefaultableBoolean.True に設定します。
Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' If the CurrentTimeIndicatorVisible property resolves to false, ' set it to DefaultableBoolean.True If Not Me.UltraDayView1.CurrentTimeIndicatorVisibleResolved Then Me.UltraDayView1.CurrentTimeIndicatorVisible = DefaultableBoolean.True End If End Sub
using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; private void button1_Click(object sender, System.EventArgs e) { // If the CurrentTimeIndicatorVisible property resolves to false, // set it to DefaultableBoolean.True if ( ! this.ultraDayView1.CurrentTimeIndicatorVisibleResolved ) this.ultraDayView1.ApCurrentTimeIndicatorVisible = DefaultableBoolean.True; }