Latest web development tutorials

ASP.NET propiedad RadioButtonList CellPadding

control RadioButtonList control RadioButtonList

Definición y Uso

Cellpadding propiedad establece o devuelve el número de píxeles entre el borde y el contenido de la celda.

Nota: Esta función sólo está ajustado en "Tabla" es válido en la propiedad RepeatLayout.

gramática

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

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


Ejemplos

Los siguientes ejemplos establecen el control RadioButtonList propiedad CellPadding:

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

Some content

</asp:RadioButtonList>
</form>

La demostración >>

control RadioButtonList control RadioButtonList