GridViewRow.RowState Property
.NET Framework 3.0
Gets the state of the GridViewRow object.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property DataControlRowState RowState { DataControlRowState get (); void set (DataControlRowState value); }
/** @property */ public DataControlRowState get_RowState () /** @property */ public void set_RowState (DataControlRowState value)
public function get RowState () : DataControlRowState public function set RowState (value : DataControlRowState)
Not applicable.
Property Value
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.
Community Additions
ADD
Show: