Click or drag to resize

SingleLineEdit Constructor

X#
Construct a single-line edit control.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 CONSTRUCTOR(
	oOwner,
	xID,
	oPoint,
	oDimension,
	kStyle
) CLIPPER
Request Example View Source

Parameters

oOwner (Optional)
Type: Usual
The window that owns the single-line edit control.
xID (Optional)
Type: Usual
The unique ID of the single-line edit control (between 1 and 8000).
oPoint (Optional)
Type: Usual
The origin of the single-line edit control in canvas coordinates.
oDimension (Optional)
Type: Usual
The dimension of the single-line edit control in canvas coordinates.
kStyle (Optional)
Type: Usual
The style of the single-line edit control, specified as one of the following constants:
Remarks
ConstantWindows API Constan
EDITAUTOHSCROLL ES_AUTOHSCROLL
EDITAUTOVSCROLL ES_AUTOVSCROLL
EDITBORDERED WS_BORDER
EDITCENTER ES_CENTER
EDITLEFT ES_LEFT
EDITLOWERCASE ES_LOWERCASE
EDITMULTILINE ES_MULTILINE
EDITNOHIDESEL ES_NOHIDESEL
EDITOEMCONVERT ES_OEMCONVERT
EDITPASSWORD ES_PASSWORD
EDITREADONLY ES_READONLY
EDITRIGHT ES_RIGHT
EDITUPPERCASE ES_UPPERCASE
EDITWANTRETURN ES_WANTRETURN
Tip Tip
In addition to the style constants specified above, you can use any Windows API style constant. Consult your Microsoft Win32 Software Development Kit documentation for detailed information about a particular constant.
See Also