Click or drag to resize

DataBrowser.EnableColumnReSize Method

X#
Enable/disable whether the user can resize columns in the data browser with the mouse. If this method is not called, the ability to resize columns is enabled, by default.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD EnableColumnReSize(
	lAllowResize
) AS USUAL CLIPPER
Request Example View Source

Parameters

lAllowResize (Optional)
Type: Usual
TRUE allows column resizing; FALSE disables it. The default is TRUE.

Return Value

Type: Usual
Remarks
The user can resize the columns by dragging on the boundary between the column caption areas with the mouse. Column movement is enabled/disabled at two levels: the DataBrowser class level and the DataColumn class level. If column resizing is set at the browser level, DataBrowser:EnableColumnResize() can be used to enable/disable resizing. However, if column resizing is enabled at the column level, this method can no longer be used. DataColumn:EnableColumnResize() must be used to change the setting.
See Also