ListBox Constructor (Typed) | |
Construct a list box.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oOwner,
xID,
oPoint,
oDimension,
kStyle
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public ListBox(
Usual oOwner = default,
Usual xID = default,
Usual oPoint = default,
Usual oDimension = default,
Usual kStyle = default
)
Request Example
View SourceParameters
- oOwner (Optional)
- Type: Usual
The window that owns the list box. - xID (Optional)
- Type: Usual
The unique ID of the list box (between 1 and 8000). - oPoint (Optional)
- Type: Usual
The origin of the list box in canvas coordinates. - oDimension (Optional)
- Type: Usual
The dimension of the list box in canvas coordinates. - kStyle (Optional)
- Type: Usual
The style of the list box, specified as one of the following constants listed below:
Remarks
Possible style values are:
Constant | Windows API Constant |
---|
LBOXDISABLENOSCROLL | LBS_DISABLENOSCROLL |
LBOXEXTENDEDSEL | LBS_EXTENDEDSEL |
LBOXHASSTRINGS | LBS_HASSTRINGS |
LBOXMULTICOLUMN | LBS_MULTICOLUMN |
LBOXMULTIPLESEL | LBS_MULTIPLESEL |
LBOXNOINTEGRALHEIGHT | LBS_NOINTEGRALHEIGHT |
LBOXNOREDRAW | LBS_NOREDRAW |
LBOXNOTIFY | LBS_NOTIFY |
LBOXOWNERDRAWFIXED | LBS_OWNERDRAWFIXED |
LBOXOWNERDRAWVARIABLE | LBS_OWNERDRAWVARIABLE |
LBOXSORT | LBS_SORT |
LBOXSTANDARD |
LBS_STANDARD
|
LBOXUSETABSTOPS | LBS_USETABSTOPS |
LBOXWANTKEYBOARDINPUT | LBS_WANTKEYBOARDINPUT |
See Also