Calendar.CaptionAlign Свойство

Определение

Получает или задает выравнивание текста, который обрабатывается как заголовок календаря.

public:
 virtual property System::Web::UI::WebControls::TableCaptionAlign CaptionAlign { System::Web::UI::WebControls::TableCaptionAlign get(); void set(System::Web::UI::WebControls::TableCaptionAlign value); };
public virtual System.Web.UI.WebControls.TableCaptionAlign CaptionAlign { get; set; }
member this.CaptionAlign : System.Web.UI.WebControls.TableCaptionAlign with get, set
Public Overridable Property CaptionAlign As TableCaptionAlign

Значение свойства

Значение TableCaptionAlign, определяющее выравнивание заголовка.

Исключения

Указанное значение не равно ни одному из значений TableCaptionAlign.

Примеры

В следующем примере кода показано, как использовать CaptionAlign свойство для выравнивания заголовка Calendar для элемента управления .

<%@ 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 runat="server">
    <title> Calendar Caption and Caption Align Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar Caption and Caption Align Example </h3>

      <br /><br /> 
  
      <asp:Calendar id="Calendar1"
           ShowGridLines="True" 
           ShowTitle="True"
            Caption="This calendar is used to demonstrate a calendar caption. It also shows
            how the caption can be aligned to the calendar, in this case to the right edge of
            the calendar."
            CaptionAlign="right"  
           runat="server"/>

      <br /><br />

   </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 runat="server">
    <title> Calendar Caption and Caption Align Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar Caption and Caption Align Example </h3>

      <br /><br /> 
  
      <asp:Calendar id="Calendar1"
           ShowGridLines="True" 
           ShowTitle="True"
            Caption="This calendar is used to demonstrate a calendar caption. It also shows
            how the caption can be aligned to the calendar, in this case to the right edge of
            the calendar."
            CaptionAlign="right"  
           runat="server"/>

      <br /><br />

   </form>

</body>
</html>

Комментарии

Это свойство определяет, где отображается заголовок относительно Calendar элемента управления . Значение по умолчанию — NotSet, которое позволяет браузеру определить, где выравнивать заголовок. В следующей таблице объясняется связь между значением TableCaptionAlign и внешним видом заголовка.

Значение TableCaptionAlign Внешний вид
Bottom Заголовок отображается в нижней части календаря с текстом по центру.
Left Заголовок отображается в верхней части календаря, текст выравнивается по левому краю.
NotSet Выравнивание субтитров не задано и определяется браузером.
Right Заголовок отображается в верхней части календаря, а текст выровнен по правому краю.
Top Заголовок отображается в верхней части календаря с текстом по центру.

Применяется к

См. также раздел