//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
///
///
/// Specifies the first day of the week.
///
///
public enum FirstDayOfWeek {
///
///
/// The first day if the week is Sunday.
///
///
Sunday = 0,
///
///
/// The first day if the week is Monday.
///
///
Monday = 1,
///
///
/// The first day if the week is Tuesday.
///
///
Tuesday = 2,
///
///
/// The first day if the week is Wednesday.
///
///
Wednesday = 3,
///
///
/// The first day if the week is Thursday.
///
///
Thursday = 4,
///
///
/// The first day if the week is Friday.
///
///
Friday = 5,
///
///
/// The first day if the week is Saturday.
///
///
Saturday = 6,
///
///
/// The first day if the week is the system specified day.
///
///
Default = 7
}
}