DetailsView::GridLines Property

 

Gets or sets the gridline style for a DetailsView control.

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

public:
property GridLines GridLines {
	virtual GridLines get();
	virtual void set(GridLines value);
}

Property Value

Type: System.Web.UI.WebControls::GridLines

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

Use the GridLines property to specify the gridline style for a DetailsView control. The following table lists the available styles.

Style

Description

GridLines.None

No gridlines are displayed.

GridLines.Horizontal

Displays the horizontal gridlines only.

GridLines.Vertical

Displays the vertical gridlines only.

GridLines.Both

Displays both the horizontal and vertical gridlines.

The following code example demonstrates how to use the GridLines property to hide all gridlines in a DetailsView control.

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

.NET Framework
Available since 2.0
Return to top
Show: