Version 24.2 (latest)

DayDisplayStyle Property (UltraMonthViewMultiBase)

Determines whether an image and/or day number is displayed for a day object.
Syntax
public DayDisplayStyle DayDisplayStyle {get; set;}
Remarks

By default, a Infragistics.Win.UltraWinSchedule.MonthViewMulti.DayUIElement will only display the day number. The DayDisplayStyle can be used to have the Infragistics.Win.UltraWinSchedule.MonthViewMulti.DayUIElement display an image (or image and the text) if the resolved appearance for the Day has an image.

Example
This example sets the control's DayDisplayStyle property to 'DayNumber' to ensure that images are not displayed by the control's DayUIElements.

Imports Infragistics.Win.UltraWinSchedule

    Private Sub HideDayImages()

        Me.ultraMonthViewMulti1.DayDisplayStyle = DayDisplayStyle.DayNumber

    End Sub
'Declaration
 
Public Property DayDisplayStyle As DayDisplayStyle
 
using Infragistics.Win.UltraWinSchedule;

		private void HideDayImages()
		{

			this.ultraMonthViewMulti1.DayDisplayStyle = DayDisplayStyle.DayNumber;

		}
'Declaration
 
Public Property DayDisplayStyle As DayDisplayStyle
 
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