GridViewRow::RowState Property

 

Gets the state of the GridViewRow object.

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

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

Property Value

Type: System.Web.UI.WebControls::DataControlRowState

A bitwise combination of the DataControlRowState values.

Use the RowType property to determine the state of the GridViewRow object. The state can be a bitwise combination of the values in the following table:

Status value

Description

DataControlRowState.Alternate

The GridViewRow object is an alternate row in the GridView control.

DataControlRowState.Edit

The GridViewRow object is in edit mode.

DataControlRowState.Normal

The GridViewRow object is in its normal (default) state.

DataControlRowState.Selected

The GridViewRow object is selected.

This property is commonly used to determine the state of a row before performing an operation.

The following example demonstrates how to use the RowState property to determine whether a row is in edit mode or is selected. If the user selects a different row while the GridView control is in edit mode, the GridView control exits edit mode.

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

.NET Framework
Available since 2.0
Return to top
Show: