?
本文檔使用 PHP中文網(wǎng)手冊 發(fā)布
CellSpacing 屬性用于獲取或設置 RadioButtonList 中表格單元格之間的像素數(shù)。
注意:該函數(shù)僅在 RepeatLayout 屬性設置為 "Table" 時有效(默認)。
<asp:RadioButtonList CellSpacing="pixels" runat="server">
Some Content
</asp:RadioButtonList >
屬性 | 描述 |
---|---|
pixels | 規(guī)定表格單元格之間的像素數(shù)。 |
下面的實例設置了 RadioButtonList 控件的 CellSpacing 屬性:
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" CellSpacing="15">
Some content
</asp:RadioButtonList>
</form>