CheckBox Constructor (Typed) | |
Construct a check box.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oOwner,
xID,
oPoint,
oDimension,
cText,
kStyle
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public CheckBox(
Usual oOwner = default,
Usual xID = default,
Usual oPoint = default,
Usual oDimension = default,
Usual cText = default,
Usual kStyle = default
)
Request Example
View SourceParameters
- oOwner (Optional)
- Type: Usual
The window that owns the check box. - xID (Optional)
- Type: Usual
The unique ID of the check box (between 1 and 8000). - oPoint (Optional)
- Type: Usual
The origin of the check box in canvas coordinates. - oDimension (Optional)
- Type: Usual
The dimension of the check box in canvas coordinates. - cText (Optional)
- Type: Usual
The text to be associated with the check box. If no text is specified, it is inherited from TextControl:TextValue. - kStyle (Optional)
- Type: Usual
Constant representing the style of the check box, specified by a Windows API style constant. The default is BS_AUTOCHECKBOX.
Consult your Microsoft Win32 Software Development Kit documentation for detailed information about a particular Windows API style constant.
See Also