ASP.NET CaptionAlign 属性

ASP.NET Calendar 控件参考手册 ASP.NET Calendar 控件参考手册


定义和用法

CaptionAlign 属性设置或返回日历的标题文本的对齐方式。

语法

<asp:Calendar Caption="text" CaptionAlign="align" runat="server" />

属性 描述
align

规定标题文本的对齐方式。

可能的值:

  • Top - 标题显示在日历顶部。文本居中。
  • Bottom - 标题显示在日历底部。文本居中。
  • Left - 标题显示在日历顶部。文本向左对齐。
  • Right - 标题显示在日历顶部。文本向右对齐。


实例

下面的例子设置了日历中的 Caption,把标题排列到日历的底部:

<form runat="server">
<asp:Calendar id="cal1" runat="server"
Caption="This is a Caption text"
CaptionAlign="bottom" />
</form>


ASP.NET Calendar 控件参考手册 ASP.NET Calendar 控件参考手册

粤ICP备11097351号-1