RadioButtonList.CellPadding Property
.NET Framework 3.0
Gets or sets the distance (in pixels) between the border and the contents of the table cell.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public int get_CellPadding () /** @property */ public void set_CellPadding (int value)
public function get CellPadding () : int public function set CellPadding (value : int)
Not applicable.
Property Value
The distance (in pixels) between the border and the contents of the table cell. The default is -1, which indicates that this property is not set.This property applies only when the RepeatLayout property is set to RepeatLayout.Table.
Use this property to control the spacing between the contents of a cell and the cell's border.
The padding amount specified is added to all four sides of a cell. It uses the height of the tallest cell in the table and the width of the widest cell in the table. The resulting cell size is applied uniformly to all cells in the table. Individual cell sizes cannot be specified.
The following code example demonstrates how to use the CellPadding property to pad the cells of a RadioButtonList control with 10 pixels.
Community Additions
ADD
Show: