Calendar.Caption Property
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.
Gets or sets a text value that is rendered as a caption for the calendar.
public:
virtual property System::String ^ Caption { System::String ^ get(); void set(System::String ^ value); };
public virtual string Caption { get; set; }
member this.Caption : string with get, set
Public Overridable Property Caption As String
Property Value
The table caption.
Examples
The following code example demonstrates how to use the Caption property to display a caption for a Calendar control.
<%@ 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>
Remarks
A table caption is used to describe the nature of the table in one to three sentences. Use the CaptionAlign property to align the caption with the calendar.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.