Grid of Goview

VerticalLine to Mouse Dragging for my Code…
MyView.GridStyle = GoViewGridStyle.VerticalLine;
…???
i want VerticalLine Catch to Mouse and Dragging…GridCellsize remove
How About…

Setting GoView.GridStyle just changes the visual appearance of the standard GoView.Grid object. The grid style has no effect on dragging or resizing.
To change dragging behavior, set GoView.GridSnapDrag.
To change resizing behavior, set GoView.GridSnapResize.
Both of those GoView properties just set the corresponding properties of the GoGrid object that is the value of GoView.Grid.

understanding
Thx