HA
haneefm
Syncfusion Team
April 18, 2007 05:29 PM UTC
Hi Steve,
If you want to allow the user to drag the mouse outside the grid client area and resize the specific row or column, you need to turn on the AllowDragOutside flag to the ResizeColsBehavior/ResizeRows Behavior property. Here is a code snippet.
this.grid.ResizeColsBehavior = GridResizeCellsBehavior.AllowDragOutside | GridResizeCellsBehavior.ResizeSingle;
this.grid.ResizeRowsBehavior = GridResizeCellsBehavior.AllowDragOutside | GridResizeCellsBehavior.ResizeSingle;
Best regards,
Haneef