Previous topic Next topic
TEXTBOX
Help > Controls >

/////////////////////////////////////////////////////////////////////
// TEXTBOX
/////////////////////////////////////////////////////////////////////

#command @ <row>, <col> TEXTBOX <name> ;
      [ OBJ <obj> ] ;
      [ <dummy1: OF, PARENT> <parent> ] ;
      [ HEIGHT <height> ] ;
      [ WIDTH <width> ] ;
      [ FIELD <field> ] ;
      [ VALUE <value> ] ;
      [ < readonly: READONLY > ] ;
      [ FONT <fontname> ] ;
      [ SIZE <fontsize> ] ;
      [ <bold: BOLD> ] ;
      [ <italic: ITALIC> ] ;
      [ <underline: UNDERLINE> ] ;
      [ <strikeout: STRIKEOUT> ] ;
      [ TOOLTIP <tooltip> ] ;
      [ BACKCOLOR <backcolor> ] ;
      [ FONTCOLOR <fontcolor> ] ;
      [ MAXLENGTH <maxlength> ] ;
      [ <upper: UPPERCASE> ] ;
      [ <lower: LOWERCASE> ] ;
      [ <password: PASSWORD> ] ;
      [ <dummy03: ONCHANGE, ON CHANGE> <change> ] ;
      [ <dummy02: ONGOTFOCUS, ON GOTFOCUS> <gotfocus> ] ;
      [ <dummy04: ONLOSTFOCUS, ON LOSTFOCUS> <lostfocus> ] ;
      [ ON TEXTFILLED <textfilled> ] ;
      [ <dummy11: ONENTER, ON ENTER> <enter> ] ;
      [ <RightAlign: RIGHTALIGN> ] ;
      [ <centeralign: CENTERALIGN> ] ;
      [ <invisible: INVISIBLE> ] ;
      [ <notabstop: NOTABSTOP> ] ;
      [ <rtl: RTL> ] ;
      [ HELPID <helpid> ] ;
      [ <autoskip: AUTOSKIP> ] ;
      [ <noborder: NOBORDER> ] ;
      [ FOCUSEDPOS <focusedpos> ] ;
      [ <disabled: DISABLED> ] ;
      [ VALID <valid> ] ;
      [ < date: DATE > ] ;
      [ DEFAULTYEAR <year> ] ;
      [ <numeric: NUMERIC> ] ;
      [ <dummy2: INPUTMASK, PICTURE> <inputmask> ] ;
      [ FORMAT <format> ] ;
      [ SUBCLASS <subclass> ] ;
      [ ACTION <action> ] ;
      [ ACTION2 <action2> ] ;
      [ IMAGE <abitmap> ] ;
      [ BUTTONWIDTH <btnwidth> ] ;
      [ WHEN <bWhen> ] ;
      [ INSERTTYPE <nInsType> ] ;
   => ;
      [ <obj> := ] DefineTextBox( <(name)>, <(parent)>, <col>, <row>, <width>, ;
            <height>, <value>, <fontname>, <fontsize>, <tooltip>, <maxlength>, ;
            <.upper.>, <.lower.>, <.password.>, <{lostfocus}>, <{gotfocus}>, ;
            <{change}>, <{enter}>, <.RightAlign.>, <helpid>, <.readonly.>, ;
            <.bold.>, <.italic.>, <.underline.>, <.strikeout.>, <(field)>, ;
            <backcolor>, <fontcolor>, <.invisible.>, <.notabstop.>, <.rtl.>, ;
            <.autoskip.>, <.noborder.>, <focusedpos>, <.disabled.>, <{valid}>, ;
            <.date.>, <.numeric.>, <inputmask>, <format>, [ <subclass>() ], ;
            <{action}>, <abitmap>, <btnwidth>, <{action2}>, <{bWhen}>, ;
            <.centeralign.>, <year>, <{textfilled}>, <nInsType> )