_Table.FindNextRow Method

Definition

Finds the next row in the Table that meets the criteria specified in a preceding FindRow(String).

public:
 Microsoft::Office::Interop::Outlook::Row ^ FindNextRow();
public Microsoft.Office.Interop.Outlook.Row FindNextRow ();
Public Function FindNextRow () As Row

Returns

Row

A Row object that represents the next row in the Table that meets the filter condition in the preceding call to FindRow. Returns Nothing (a null reference (Nothing in Visual Basic) in C#) if FindNextRow cannot find another row that meets the criteria specified in FindRow. Also returns Nothing (a null reference (Nothing in Visual Basic) in C#) if FindRow has not been called before FindNextRow.

Remarks

FindNextRow finds the next row based on the row returned by the preceding FindRow or FindNextRow. It does not depend on the current row (as the current row may have been repositioned since the preceding FindRow or FindNextRow, for example, by MoveToStart()).

If FindNextRow finds a row, it will position the current row to that row. If it does not find another row, it will not reposition the current row.

Applies to