Latest web development tutorials

ASP.NET propiedad RadioButtonList CELLSPACING

control RadioButtonList control RadioButtonList

Definición y Uso

CELLSPACING propiedad se utiliza para obtener o establecer el número de píxeles en el RadioButtonList entre celdas de la tabla.

Nota: Esta función sólo es válida cuando está en "Tabla" (por defecto) en la propiedad RepeatLayout.

gramática

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

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


Ejemplos

Los siguientes ejemplos establecen el control RadioButtonList propiedad CELLSPACING:

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

Some content

</asp:RadioButtonList>
</form>

La demostración >>

control RadioButtonList control RadioButtonList