SingleLineEdit Constructor | |
Construct a single-line edit control.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oOwner,
xID,
oPoint,
oDimension,
kStyle
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public SingleLineEdit(
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 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 Constant | Windows 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 |
---|
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