BaseDataList.GridLines Property

Gets or sets a value that specifies whether the border between the cells of a data listing control is displayed.

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

public:
virtual property GridLines GridLines {
	GridLines get ();
	void set (GridLines value);
}
/** @property */
public GridLines get_GridLines ()

/** @property */
public void set_GridLines (GridLines value)

public function get GridLines () : GridLines

public function set GridLines (value : GridLines)

Not applicable.

Property Value

One of the GridLines values. The default value is Both.

Use the GridLines property to specify whether the border between the cells of a data listing control is displayed. This property is set with one of the GridLines enumeration values. The following table lists the possible values.

Value

Description

None

No cell border is displayed.

Horizontal

Only the upper and lower borders of the cells in a data listing control are displayed.

Vertical

Only the left and right borders of the cells in the data list control are displayed.

Both

All borders of the cells in a data listing control are displayed.

The following code example demonstrates how to use the GridLines property to display both the horizontal and vertical gridlines in a data-bound control.

No code example is currently available or this language may not be supported.

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

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: