DataGridViewCell::IsInEditMode Property

 

Gets a value indicating whether this cell is currently being edited.

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

public:
[BrowsableAttribute(false)]
property bool IsInEditMode {
	bool get();
}

Property Value

Type: System::Boolean

true if the cell is in edit mode; otherwise, false.

Exception Condition
InvalidOperationException

The row containing the cell is a shared row.

This property is useful when you are working directly with cell instances. Alternatively, you can use the DataGridView::IsCurrentCellInEditMode property. You can also handle the DataGridView::CellBeginEdit event to determine when the user enters edit mode.

.NET Framework
Available since 2.0
Return to top
Show: