私には がありDataGridViewButtonCell
、プロパティをTrueDataGridView
に設定したかったのです。Visible
私が試してみました:
DataGridView1.Rows("number of row i want").Cells("number of cell i want").Visible = True
残念ながら、プロパティvisible
はread only
です。
コードは次のとおりです。
Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
'does not work
DataGridView1.Rows(e.RowIndex).Cells(6).Visible = True
End Sub
どうすればこれを達成できるか知っている人はいますか?
ありがとう。