DekGenius.com
[ Team LiB ] Previous Section Next Section

FirstDayOfWeekserializable

System.Web.UI.WebControls (system.web.dll)enum

This enumeration is used by the Calendar.FirstDayOfWeek property to determine how a month is broken up into rows of weeks in the display. If you choose the value Sunday, every row in the calendar display will start on Sunday and end with Saturday. Default instructs ASP.NET to use the current regional settings defined on the web server.

public enum FirstDayOfWeek {
   Sunday = 0,
   Monday = 1,
   Tuesday = 2,
   Wednesday = 3,
   Thursday = 4,
   Friday = 5,
   Saturday = 6,
   Default = 7
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) FirstDayOfWeek

Returned By

System.Web.UI.MobileControls.Calendar.FirstDayOfWeek, Calendar.FirstDayOfWeek

Passed To

System.Web.UI.MobileControls.Calendar.FirstDayOfWeek, Calendar.FirstDayOfWeek

    [ Team LiB ] Previous Section Next Section