Latest web development tutorials

ASP.NET RadioButtonList CellSpacing 屬性

RadioButtonList 控件 RadioButtonList控件

定義和用法

CellSpacing 屬性用於獲取或設置RadioButtonList 中表格單元格之間的像素數。

注意:該函數僅在RepeatLayout屬性設置為"Table"時有效(默認)。

語法

<asp:RadioButtonList CellSpacing="pixels" runat="server">
Some Content
</asp:RadioButtonList >

属性 描述
pixels 规定表格单元格之间的像素数。


實例

下面的實例設置了RadioButtonList 控件的CellSpacing 屬性:

<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" CellSpacing="15">

Some content

</asp:RadioButtonList>
</form>

演示實例»

RadioButtonList 控件 RadioButtonList控件