StartDayOfWeek Property (DataEngine)
Gets or sets a System.DayOfWeek enumeration that determines the day which will be used as the starting day of the week for the dategrouping functionality.
Syntax
'Declaration Public Property StartDayOfWeek As DayOfWeek
'Usage Dim instance As DataEngine Dim value As DayOfWeek instance.StartDayOfWeek = value value = instance.StartDayOfWeek
public DayOfWeek StartDayOfWeek {get; set;}
Remarks
This property used with conjunction of date grouping by weeks. The default is Sunday.
Example
de.DateGrouping = TimeInterval.Weeks; de.StartDayOfWeek = DayOfWeek.Monday;
de.DateGrouping = TimeInterval.Weeks de.StartDayOfWeek = DayOfWeek.Monday
Example
Requirements
Target Platforms: 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