?
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
CaptionAlign 屬性用于設置或返回日歷的標題文本的對齊方式。
<asp:Calendar?Caption="text"?CaptionAlign="align"?runat="server"?/>
屬性 | 描述 |
---|---|
align | 規(guī)定標題文本的對齊方式。 可能的值:
|
下面的實例設置了日歷中的 Caption 屬性,把標題排列到日歷的底部:
<form runat="server">
<asp:Calendar id="cal1" runat="server"
Caption="This is a Caption text"
CaptionAlign="bottom" />
</form>