Table.CellPadding Property

Gets or sets the amount of space between the contents of a cell and the cell's border.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
virtual property int CellPadding {
	int get ();
	void set (int value);
}
/** @property */
public int get_CellPadding ()

/** @property */
public void set_CellPadding (int value)

public function get CellPadding () : int

public function set CellPadding (value : int)

Property Value

The amount of space, in pixels, between the contents of a cell and the cell's border. The default value is -1, which indicates that the property has not been set.

Use the CellPadding 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 the cell.

All cells in the same column of a Table control have the same width. The padding amount is applied to the widest cell and all other cells in the column have this cell width.

Similarly, all cells in the same row have the same height. The padding amount is applied to the tallest cell in the row and all other cells in the row have this cell height. Individual cell sizes cannot be specified.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0

Community Additions

ADD
Show: