Calendar.DayNameFormat Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define o formato de nome dos dias da semana.
public:
property System::Web::UI::WebControls::DayNameFormat DayNameFormat { System::Web::UI::WebControls::DayNameFormat get(); void set(System::Web::UI::WebControls::DayNameFormat value); };
[System.ComponentModel.Bindable(true)]
public System.Web.UI.WebControls.DayNameFormat DayNameFormat { get; set; }
public System.Web.UI.WebControls.DayNameFormat DayNameFormat { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.DayNameFormat : System.Web.UI.WebControls.DayNameFormat with get, set
member this.DayNameFormat : System.Web.UI.WebControls.DayNameFormat with get, set
Public Property DayNameFormat As DayNameFormat
Valor da propriedade
Um dos valores de DayNameFormat. O valor padrão é Short
.
- Atributos
Exceções
O formato de nome do dia especificado não é um dos valores DayNameFormat.
Exemplos
O exemplo de código a seguir demonstra como usar a DayNameFormat propriedade para especificar que os dias da semana são exibidos na íntegra.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!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>
<title>Calendar Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Calendar Example</h3>
<asp:Calendar id="calendar1" runat="server"
ShowDayHeader="True"
DayNameFormat="Full"/>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!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>
<title>Calendar Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Calendar Example</h3>
<asp:Calendar id="calendar1" runat="server"
ShowDayHeader="True"
DayNameFormat="Full"/>
</form>
</body>
</html>
<%@ 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>
Comentários
Use a DayNameFormat propriedade para especificar o formato de nome para os dias da semana. Essa propriedade é definida com um dos valores de DayNameFormat enumeração. Você pode especificar se os dias da semana são exibidos como o nome completo, o nome curto (abreviado), a primeira letra do dia ou as duas primeiras letras do dia.
Essa propriedade só se aplicará se a ShowDayHeader propriedade estiver definida como true
.
Os nomes de dia são baseados nas configurações locais do servidor.