DataGridViewRowCollection.GetPreviousRow Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the previous row in the collection that meets the specified criteria.
Overloads
GetPreviousRow(Int32, DataGridViewElementStates) |
Returns the index of the previous DataGridViewRow that meets the specified criteria. |
GetPreviousRow(Int32, DataGridViewElementStates, DataGridViewElementStates) |
Returns the index of the previous DataGridViewRow that meets the specified inclusion and exclusion criteria. |
GetPreviousRow(Int32, DataGridViewElementStates)
Returns the index of the previous DataGridViewRow that meets the specified criteria.
public:
int GetPreviousRow(int indexStart, System::Windows::Forms::DataGridViewElementStates includeFilter);
public int GetPreviousRow (int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter);
member this.GetPreviousRow : int * System.Windows.Forms.DataGridViewElementStates -> int
Public Function GetPreviousRow (indexStart As Integer, includeFilter As DataGridViewElementStates) As Integer
Parameters
- indexStart
- Int32
The index of the row where the method should begin to look for the previous DataGridViewRow.
- includeFilter
- DataGridViewElementStates
A bitwise combination of DataGridViewElementStates values.
Returns
The index of the previous DataGridViewRow that has the attributes specified by includeFilter
; -1 if no row is found.
Exceptions
indexStart
is greater than the number of rows in the collection.
includeFilter
is not a valid bitwise combination of DataGridViewElementStates values.
Remarks
The GetPreviousRow(Int32, DataGridViewElementStates) method begins looking for the row that matches the criteria starting with the row positioned before indexStart
.
See also
Applies to
GetPreviousRow(Int32, DataGridViewElementStates, DataGridViewElementStates)
Returns the index of the previous DataGridViewRow that meets the specified inclusion and exclusion criteria.
public:
int GetPreviousRow(int indexStart, System::Windows::Forms::DataGridViewElementStates includeFilter, System::Windows::Forms::DataGridViewElementStates excludeFilter);
public int GetPreviousRow (int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter);
member this.GetPreviousRow : int * System.Windows.Forms.DataGridViewElementStates * System.Windows.Forms.DataGridViewElementStates -> int
Public Function GetPreviousRow (indexStart As Integer, includeFilter As DataGridViewElementStates, excludeFilter As DataGridViewElementStates) As Integer
Parameters
- indexStart
- Int32
The index of the row where the method should begin to look for the previous DataGridViewRow.
- includeFilter
- DataGridViewElementStates
A bitwise combination of DataGridViewElementStates values.
- excludeFilter
- DataGridViewElementStates
A bitwise combination of DataGridViewElementStates values.
Returns
The index of the previous DataGridViewRow that has the attributes specified by includeFilter
, and does not have the attributes specified by excludeFilter
; -1 if no row is found.
Exceptions
indexStart
is greater than the number of rows in the collection.
One or both of the specified filter values is not a valid bitwise combination of DataGridViewElementStates values.
Remarks
The GetPreviousRow(Int32, DataGridViewElementStates, DataGridViewElementStates) method begins looking for the row that matches the criteria starting with the row positioned before indexStart
.