Version

InitializeVisibleDay Event

Event fired before a VisibleDay object is added to the VisibleDays collection.
Syntax
'Declaration
 
Public Event InitializeVisibleDay As InitializeVisibleDayEventHandler
public event InitializeVisibleDayEventHandler InitializeVisibleDay
Event Data

The event handler receives an argument of type VisibleDayEventArgs containing data related to this event. The following VisibleDayEventArgs properties provide information specific to this event.

PropertyDescription
VisibleDay Returns the VisibleDay object for which the event has occurred.
Remarks

A reference to the VisibleDay that is about to be added is passed in the event args.

Example
This code sample demonstrates how to use the UltraDayView control's DayTextFormat and the VisibleDay object's Text property, in conjunction with the InitializeVisibleDay event, to customize the text that is displayed by the DayHeaderUIElement.

For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic and Visual C#. For specific information and code examples illustrating how to consume events in your application, see Consuming Events in the .NET Framework Developer's Guide.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule

    Private Sub ultraDayView1_InitializeVisibleDay(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.VisibleDayEventArgs) Handles ultraDayView1.InitializeVisibleDay

        '	Set the DayTextFormat property, which will apply
        '	to VisibleDays whose Text property is not explicitly set.
        If Me.ultraDayView1.DayTextFormat.Length = 0 Then
            Me.ultraDayView1.DayTextFormat = "dd-MMM-yy"
        End If

        '	Explicitly set the VisibleDay's Text property for
        '	yesterday, today, and tommorow.
        If (e.VisibleDay.Date.Date.Equals(DateTime.Today)) Then
            e.VisibleDay.Text = "Today"
        ElseIf (e.VisibleDay.Date.Date.Equals(DateTime.Today.AddDays(-1.0F))) Then
            e.VisibleDay.Text = "Yesterday"
        ElseIf (e.VisibleDay.Date.Date.Equals(DateTime.Today.AddDays(1.0F))) Then
            e.VisibleDay.Text = "Tommorow"
        End If

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinEditors;

		private void ultraDayView1_InitializeVisibleDay(object sender, Infragistics.Win.UltraWinSchedule.VisibleDayEventArgs e)
		{
			//	Set the DayTextFormat property, which will apply
			//	to VisibleDays whose Text property is not explicitly set.
			if ( this.ultraDayView1.DayTextFormat.Length == 0 )
				this.ultraDayView1.DayTextFormat = "dd-MMM-yy";

			//	Explicitly set the VisibleDay's Text property for
			//	yesterday, today, and tommorow.
			if ( e.VisibleDay.Date.Date.Equals( DateTime.Today ) )
				e.VisibleDay.Text = "Today";
			else
			if ( e.VisibleDay.Date.Date.Equals( DateTime.Today.AddDays(-1f) ) )
				e.VisibleDay.Text = "Yesterday";
			else
			if ( e.VisibleDay.Date.Date.Equals( DateTime.Today.AddDays(1f) ) )
				e.VisibleDay.Text = "Tommorow";
		}
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