CellSpacing Property

UltimateSearch

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets the distance (in pixels) between adjacent table cells.

Namespace: Karamasoft.WebControls.UltimateSearch
Assembly: UltimateSearch (in UltimateSearch.dll) Version: 3.7.4186.26690

Syntax

C#
public override int CellSpacing { get; set; }
Visual Basic
Public Overrides Property CellSpacing As Integer
	Get
	Set
Visual C++
public:
virtual property int CellSpacing {
	int get () override;
	void set (int value) override;
}

Field Value

The distance (in pixels) between adjacent table cells. The default is -1, which indicates that this property is not set.

Remarks

This property only applies when the RepeatLayout property is set to RepeatLayout.Table. Use this property to control the spacing between individual cells in the table. This property is applied both vertically and horizontally.

See Also