DataGridViewRowCollection::GetFirstRow Method (DataGridViewElementStates, DataGridViewElementStates)

 

Returns the index of the first DataGridViewRow that meets the specified inclusion and exclusion criteria.

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

public:
int GetFirstRow(
	DataGridViewElementStates includeFilter,
	DataGridViewElementStates excludeFilter
)

Parameters

includeFilter
Type: System.Windows.Forms::DataGridViewElementStates

A bitwise combination of DataGridViewElementStates values.

excludeFilter
Type: System.Windows.Forms::DataGridViewElementStates

A bitwise combination of DataGridViewElementStates values.

Return Value

Type: System::Int32

The index of the first DataGridViewRow that has the attributes specified by includeFilter, and does not have the attributes specified by excludeFilter; -1 if no row is found.

Exception Condition
ArgumentException

One or both of the specified filter values is not a valid bitwise combination of DataGridViewElementStates values.

.NET Framework
Available since 2.0
Return to top
Show: