0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

DataGridView からdatarowを取得してRowstateを参照する方法

Last updated at Posted at 2022-11-11

グリッドの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)
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?