I have a DataGridViewButtonCell in my DataGridView and I wanted to set the property Visible to True.
I have tried:
DataGridView1.Rows("number of row i want").Cells("number of cell i want").Visible = True
Unfortunately it says that the property visible is read only.
Here is the code:
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
Does anyone knows how I can achieve this?
Thanks.

There is no actual way to hide a
DataGridViewButtonCell. Currently I can only see two options:Cellto aDataGridViewTextBoxCelland set theReadOnlyproperty to TrueUse
Padding:Use
DataGridViewTextBoxCell:Both of these should give you the effect of not showing the button.