I was wondering if there was a way to determine if the last column is fully displayed.
I know there is a Displayed property on a column, but that property is true if the column is either partially or fully displayed. I only want it if the column is fully displayed.
This will do it:
Call it by IsFullyVisible(DataGridView1, DataGridView1.ColumnCount – 1) to get if the last column is fully visible.