/////////////////////////////////////////////////////////////////////
// CHECKBOX
/////////////////////////////////////////////////////////////////////
#command @ <row>, <col> CHECKBOX <name> ;
[ OBJ <obj> ] ;
[ <dummy1: OF, PARENT> <parent> ] ;
[ CAPTION <caption> ] ;
[ WIDTH <w> ] ;
[ HEIGHT <h> ] ;
[ FIELD <field> ] ;
[ VALUE <value> ] ;
[ FONT <f> ] ;
[ SIZE <n> ] ;
[ <bold: BOLD> ] ;
[ <italic: ITALIC> ] ;
[ <underline: UNDERLINE> ] ;
[ <strikeout: STRIKEOUT> ] ;
[ TOOLTIP <tooltip> ] ;
[ BACKCOLOR <backcolor> ] ;
[ FONTCOLOR <fontcolor> ] ;
[ <dummy02: ONGOTFOCUS, ON GOTFOCUS> <gotfocus> ] ;
[ <dummy03: ONCHANGE, ON CHANGE> <change> ] ;
[ <dummy04: ONLOSTFOCUS, ON LOSTFOCUS> <lostfocus> ] ;
[ <transparent: TRANSPARENT> ] ;
[ HELPID <helpid> ] ;
[ <invisible: INVISIBLE> ] ;
[ <notabstop: NOTABSTOP> ] ;
[ <autosize: AUTOSIZE > ] ;
[ <disabled: DISABLED > ] ;
[ SUBCLASS <subclass> ] ;
[ <rtl: RTL> ] ;
[ <threestate: THREESTATE> ] ;
[ <left: LEFTJUSTIFY, LEFTALIGN> ] ;
[ <drawby: OOHGDRAW, WINDRAW> ] ;
=> ;
[ <obj> := ] _OOHG_SelectSubClass( TCheckBox(), [ <subclass>() ] ): ;
Define( <(name)>, <(parent)>, <col>, <row>, <caption>, <value>, ;
<f>, <n>, <tooltip>, <{change}>, [<w>], [<h>], <{lostfocus}>, ;
<{gotfocus}>, <helpid>, <.invisible.>, <.notabstop.>, <.bold.>, ;
<.italic.>, <.underline.>, <.strikeout.>, <(field)>, <backcolor>, ;
<fontcolor>, <.transparent.>, <.autosize.>, <.rtl.>, <.disabled.>, ;
<.threestate.>, <.left.>, IIF( #<drawby> == "OOHGDRAW", .T., ;
IIF( #<drawby> == "WINDRAW", .F., NIL ) ) )