DataBrowser.EnableColumnReSize Method | |
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
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual EnableColumnReSize(
Usual lAllowResize = default
)
Request Example
View SourceParameters
- lAllowResize (Optional)
- Type: Usual
TRUE allows column resizing; FALSE disables it. The default is TRUE.
Return Value
Type:
UsualRemarks
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