Version

BorderStyleDayHeader Property

Gets/sets the border style that is used by the day headers.
Syntax
'Declaration
 
Public Property BorderStyleDayHeader As Infragistics.Win.UIElementBorderStyle
public Infragistics.Win.UIElementBorderStyle BorderStyleDayHeader {get; set;}
Remarks

The day header is the area that contains the Day's date.

Note: Only the bottom edge of the border is drawn, and as a result certain border styles may not appear as might be expected.

Example
This example uses the BorderStyleDayHeader property to hide the day header border by setting the property to 'None'.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinSchedule.WeekView

    Private Sub HideDayHeaderBorder()

        Me.ultraWeekView1.BorderStyleDayHeader = UIElementBorderStyle.None

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using Infragistics.Win.UltraWinSchedule.WeekView;
using System.Diagnostics;

private void HideDayHeaderBorder()
{

	this.ultraWeekView1.BorderStyleDayHeader = UIElementBorderStyle.None;

}
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