DataGridViewRowPrePaintEventArgs::State Property

 

Gets the state of the current DataGridViewRow.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property DataGridViewElementStates State {
	DataGridViewElementStates get();
}

Property Value

Type: System.Windows.Forms::DataGridViewElementStates

A bitwise combination of the DataGridViewElementStates values that specifies the state of the row.

This property can be used to determine whether the row is frozen, read-only, or selected, among other states.

The following code example demonstrates how to use the State property to determine whether a row is selected. If the row is selected, the code paints a custom background. The variable, e, is of type DataGridViewRowPrePaintEventArgs. This code example is part of a larger example provided in How to: Customize the Appearance of Rows in the Windows Forms DataGridView Control.

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

.NET Framework
Available since 2.0
Return to top
Show: