How can I check if a DataGridView
contains column \"x\" and column \"x\" is visible?
All I have so far is below.
if (Dgv.Columns.Contain
You can test the column visibility using the Visible
property:
if (column.Visible)
{
// Do Stuff
}
This will tell you if the column should be displayed.
You can get the column via this call if you know the index:
DataColumn column = dGV.Columns[index];
If the column is displayed but off the screen I don't know how you'd test for that.