グリッドのDataSourceをCastしてDataTableにしてRowごとに取り出して内容を参照する。
For Each DtRow As DataRow In DirectCast(hogeDataGridView.DataSource, DataTable).Rows()
Debug.Print(DtRow.RowState)
Next
行を指定して取りたい場合は、
'RowState確認用
Dim DtRow As DataRow
'DataRowを取得
DtRow = DirectCast(hogeDataGridView.DataSource, DataTable).Rows(i)