Latest web development tutorials

ASP.NET CheckBoxList CellPadding 屬性

CheckBoxList 控件 CheckBoxList控件

定義和用法

CellPadding 屬性用於獲取或設置表格單元格的邊框與內容之間的像素數。

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

語法

<asp:CheckBoxList CellPadding="pixels" runat="server">
Some Content
</asp:CheckBoxList>

属性 描述
pixels 规定表格单元格的边框与内容之间的像素数。


實例

下面的實例設置了CheckBoxList 控件的CellPadding 屬性:

<form runat="server">
<asp:CheckBoxList id="rb1"
runat="server" CellPadding="15">

Some content

</asp:CheckBoxList>
</form>

演示實例»

CheckBoxList 控件 CheckBoxList控件