How to Move to the Next Row in Windows Forms Grid Control

18 Nov 20181 minute to read

Set the WrapCellBehavior property to wrap a row when the Tab or Enter key is pressed.

//Sets WrapCellBehavior property to Wrap Row to move to the next row.
this.grid.Model.Options.WrapCellBehavior = GridWrapCellBehavior.WrapRow;
'Sets WrapCellBehavior property to Wrap Row to move to the next row.
Me.grid.Model.Options.WrapCellBehavior = GridWrapCellBehavior.WrapRow