DataBrowser.EnableVerticalSplit Method | |
Enable/disable a vertical splitbar in the data browser.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD EnableVerticalSplit(
lShowSplit,
nMode
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual EnableVerticalSplit(
Usual lShowSplit = default,
Usual nMode = default
)
Request Example
View SourceParameters
- lShowSplit (Optional)
- Type: Usual
TRUE enables (and shows) the splitbar; FALSE disables (and hides) it. The default is TRUE.
If this method is not called for a data browser, FALSE is the default.
- nMode (Optional)
- Type: Usual
Initial splitbar positioning, specified as one of the following constants:
Constant | Description |
---|
GBSSBLEFT | Places the splitbar at the left-edge of the browser. |
GBSSBMIDDLE | Places the splitbar in the middle of the browser. |
GBSSBRIGHT | Places the splitbar at the right-edge of the browser. |
If not specified, the initial splitbar position defaults to GBSSBMIDDLE.
Return Value
Type:
UsualRemarks Constant | Description |
---|
GBSSBLEFT | Places the splitbar at the left-edge of the browser. |
GBSSBMIDDLE | Places the splitbar in the middle of the browser. |
GBSSBRIGHT | Places the splitbar at the right-edge of the browser. |
A vertical splitbar allows the left and right parts of a window to be independently scrollable sideways. The position of the splitbar in the window is also adjustable with the mouse.
See Also