What is the official DataGridView nomenclature description of the little black triangle in the first column?
It seems to mark the position of DataGridView.CurrentRow, but it's a get property only, and I'd like to set it.
What is the official DataGridView nomenclature description of the little black triangle in the first column?
It seems to mark the position of DataGridView.CurrentRow, but it's a get property only, and I'd like to set it.
CurrentCell
property to a cell in the desired row. From the Remarks section of DataGridView.CurrentRow Property at http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.currentrow.aspx.