DetailsViewRow.RowState Property
.NET Framework 3.0
Gets the state of the DetailsViewRow object.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public DataControlRowState get_RowState ()
public function get RowState () : DataControlRowState
Not applicable.
Property Value
A bitwise combination of the DataControlRowState enumeration values.Use the RowState property to determine the state of the row. The state can be a bitwise combination of the values in the following table.
| State value | Description |
|---|---|
| DataControlRowState.Alternate | The DetailsViewRow object is an alternate row in the DetailsView control. |
| DataControlRowState.Edit | The DetailsViewRow object is in edit mode. |
| DataControlRowState.Insert | The DetailsViewRow object is in insert mode. |
| DataControlRowState.Normal | The DetailsViewRow object is in its normal (default) state. |
This property is commonly used to determine the state of a row before performing an operation.
Community Additions
ADD
Show: