ASP.NET RadioButtonList CellSpacing 属性
ASP.NET RadioButtonList CellSpacing 属性
RadioButtonList 控件定义和用法
CellSpacing 属性用于获取或设置 RadioButtonList 中表格单元格之间的像素数。
注意:该函数仅在 RepeatLayout 属性设置为 "Table" 时有效(默认)。
语法
<asp:RadioButtonList CellSpacing="pixels" runat="server">
Some Content
</asp:RadioButtonList >
Some Content
</asp:RadioButtonList >
属性 | 描述 |
---|---|
pixels | 规定表格单元格之间的像素数。 |
实例
下面的实例设置了 RadioButtonList 控件的 CellSpacing 属性:
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" CellSpacing="15">
Some content
</asp:RadioButtonList>
</form>
<asp:RadioButtonList id="rb1"
runat="server" CellSpacing="15">
Some content
</asp:RadioButtonList>
</form>
演示实例 »
相关文章
- ASP.NET Web Pages 教程
- ASP.NET Web Pages 类参考手册
- ASP.NET Razor VB 变量
- ASP.NET Button 控件
- ASP.NET XML 数据绑定
- ASP.NET RangeValidator 控件
- ASP.NET Image 控件
- WebSecurity ConfirmAccount 方法
- WebSecurity RequireUser 方法
- HTML Inputbutton
- HTML Table 2
- ASP.NET HTML 控件 Hyperlink
- Textbox 3
- ASP.NET HTML 控件 数据库链接 - 绑定一个 Repeater 控件
- VB 实例 实例解释
- VB 实例 使用 WebGrid 显示数据
- C# 实例 使用 Chart 帮助器 根据数组显示条形图
- htmlform
- htmlimage
- ASP.NET Calendar CaptionAlign 属性