Edit Constructor | |
Construct an edit control.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oOwner,
xID,
oPoint,
oDimension,
kStyle
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public Edit(
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 edit control. - xID (Optional)
- Type: Usual
The ID of the edit control. - oPoint (Optional)
- Type: Usual
The origin of the edit control in canvas coordinates. - oDimension (Optional)
- Type: Usual
The dimension of the edit control in canvas coordinates. - kStyle (Optional)
- Type: Usual
The style of the 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 |
See Also