Version

CurrentTimeIndicatorVisible Property

Gets/sets whether a marker is drawn to indicate the current time in the main time slot descriptor area.
Syntax
'Declaration
 
Public Property CurrentTimeIndicatorVisible As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean CurrentTimeIndicatorVisible {get; set;}
Remarks

When the ViewStyle property of the UltraScheduleControlBase.CalendarLook associated with this UltraDayView control is set to Standard, the CurrentTimeIndicatorVisible property resolves to False; when ViewStyle is set to Office2003, the CurrentTimeIndicatorVisible property resolves to True. The property can of course be explicitly set to true or false, independent of the current view style.

Note: To enable the Office2003 view style, set the ViewStyle property to DefaultableBoolean.True on the UltraCalendarLook object that is associated with this UltraDayView control.

Example
The following code sample demonstrates how to use the CurrentTimeIndicatorVisible property to display a marker for the current time in the main time slot descriptor area.

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;
		
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also