//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { /// /// /// Specifies the format for the name of days. /// /// public enum DayNameFormat { /// /// /// The day name displayed in full. /// /// Full = 0, /// /// /// The day name displayed in short format. /// /// Short = 1, /// /// /// The day name displayed with just the first letter. /// /// FirstLetter = 2, /// /// /// The day name displayed with just the first two letters. /// /// FirstTwoLetters = 3, Shortest = 4 } }