DataGridViewRowCollection::GetNextRow Method (Int32, DataGridViewElementStates)

 

Returns the index of the next DataGridViewRow that meets the specified criteria.

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

public:
int GetNextRow(
	int indexStart,
	DataGridViewElementStates includeFilter
)

Parameters

indexStart
Type: System::Int32

The index of the row where the method should begin to look for the next DataGridViewRow.

includeFilter
Type: System.Windows.Forms::DataGridViewElementStates

A bitwise combination of DataGridViewElementStates values.

Return Value

Type: System::Int32

The index of the first DataGridViewRow after indexStart that has the attributes specified by includeFilter, or -1 if no row is found.

Exception Condition
ArgumentOutOfRangeException

indexStart is less than -1.

ArgumentException

includeFilter is not a valid bitwise combination of DataGridViewElementStates values.

The GetNextRow(Int32, DataGridViewElementStates) method begins looking for the row that matches the criteria starting with the row positioned after indexStart.

.NET Framework
Available since 2.0
Return to top
Show: