Enum GridResizeCellsBehavior
Defines behavior for resizing rows or columns.
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
[Flags]
public enum GridResizeCellsBehavior
Remarks
You can customize the mouse controller's behavior at run-time while the user is performing the action by subscribing to the ResizingColumns and ResizingRows events.
Fields
Name | Description |
---|---|
AllowDragOutside | Allow the user to drag the mouse outside the grid client area and resize the specific row or column. |
IgnoreHeaders | Do not allow the user to resize rows or columns by grabbing the divider between row or column headers. Use this option only when combined with InsideGrid. |
InsideGrid | Allow the user to resize rows or columns from anywhere inside the grid by grabbing the divider between row or column headers. |
None | Turn off resizing rows and columns with mouse. |
OutlineBounds | Emphasize original cell bounds of tracked row / column. |
OutlineHeaders | Show a header pressed when the user resizes the associated row or column. |
ResizeAll | Resize all rows or columns when the user resizes one row or column with the mouse. |
ResizeSingle | Resize a single row or column (or the selected range) when the user resizes one row or column with the mouse. |