codecamp

ASP.NET Panel Direction 属性

ASP.NET Panel Direction 属性


Panel 控件 Panel 控件

定义和用法

Direction 属性用于设置或返回 Panel 的内容显示方向。

该属性用于规定 Panel 中包含文本的控件的显示方向。

语法

<asp:Panel Direction="direction" runat="server">
Some Content
</asp:Panel>
 
属性 描述
direction 规定 panel 的内容显示方向。

可能的值:

  • NotSet - 默认。不设置内容方向
  • LeftToRight - 内容方向为从左到右
  • RightToLeft - 内容方向为从右到左


实例

下面的实例更改了 Panel 控件的 Direction 属性:

<form runat="server">
<asp:Panel id="pan1" runat="server" Direction="RightToLeft">
Hello!
</asp:Panel>
</form>

演示实例 »

Panel 控件 Panel 控件
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }