DayNameFormat Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the display format for the days of the week on a Calendar control.
public enum class DayNameFormat
public enum DayNameFormat
type DayNameFormat =
Public Enum DayNameFormat
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Full | 0 | The days of the week displayed in full format. For example, Monday. |
Short | 1 | The days of the week displayed in abbreviated format. For example, Mon represents Monday. |
FirstLetter | 2 | The days of the week displayed with just the first letter. For example, M represents Monday. |
FirstTwoLetters | 3 | The days of the week displayed with just the first two letters. For example, Mo represents Monday. |
Shortest | 4 | The days of the week displayed in the shortest abbreviation format possible for the current culture. |
Examples
The following code example shows how to specify a format for the format for the days of the week in a Calendar control.
<%@ Page Language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title> Calendar DayNameFormat Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar DayNameFormat Example </h3>
<asp:Calendar id="Calendar1"
daynameformat="Shortest"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title> Calendar DayNameFormat Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar DayNameFormat Example </h3>
<asp:Calendar id="Calendar1"
daynameformat="Shortest"
runat="server"/>
</form>
</body>
</html>
Remarks
The DayNameFormat enumeration represents the display formats for the days of the week in a Calendar control.
Note
In some cultures, DayNameFormat.FirstLetter
and DayNameFormat.FirstTwoLetter
display identical values for one or more days of the week. In these cultures, consider using DayNameFormat.Shortest
, which displays the shortest abbreviation possible without using identical abbreviations.