Version

MinimumDaySize Property

Determines the minimum size for a day.
Syntax
'Declaration
 
Public Property MinimumDaySize As Size
public Size MinimumDaySize {get; set;}
Remarks

The default behavior is for the control to size the Infragistics.Win.UltraWinSchedule.MonthViewMulti.DayUIElement objects to the size required to display the largest day number. The size of the day is based on the control's Infragistics.Win.Appearance font settings. The MinimumDaySize can be used to increase the size for the day objects. This can be useful if the DayDisplayStyle is set to display images and the day should be made large enough to display the images.

Example
This example uses the MinimumDaySize property to ensure that the days displayed by the control will be at least 16 x 16.

Private Sub SetMinimumDaySize()

    Me.ultraMonthViewMulti1.MinimumDaySize = New Size(16, 16)

End Sub
private void SetMinimumDaySize()
{

	this.ultraMonthViewMulti1.MinimumDaySize = new Size( 16, 16 );

}
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