/////////////////////////////////////////////////////////////////////
// MINIPRINT DRAWING COMMANDS
/////////////////////////////////////////////////////////////////////
#xcommand @ <Row>, <Col> PRINT LINE TO <ToRow>, <ToCol> ;
[ <lwidth: PENWIDTH> <Width> ] ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lStyle: STYLE> <nStyle> ] ;
=> ;
_HMG_PRINTER_H_Line( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, <ToCol>, ;
<Width>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], <.lwidth.>, ;
<.lcolor.>, <.lStyle.>, <nStyle> )
#xcommand @ <Row>, <Col> PRINT RECTANGLE TO <ToRow>, <ToCol> ;
[ <lwidth: PENWIDTH> <Width> ] ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lStyle: STYLE> <nStyle> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUSHCOLOR> <aBrColor> ] ;
=> ;
_HMG_PRINTER_H_Rectangle( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, ;
<ToCol>, <Width>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], ;
<.lwidth.>, <.lcolor.>, <.lStyle.>, <nStyle>, <.lBrushStyle.>, ;
<nBrStyle>, <.lBrushColor.>, <aBrColor> )
#xcommand @ <Row>, <Col> PRINT RECTANGLE TO <ToRow>, <ToCol> ;
[ <lwidth: PENWIDTH> <Width> ] ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lStyle: STYLE> <nStyle> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUSHCOLOR> <aBrColor> ] ;
ROUNDED ;
=> ;
_HMG_PRINTER_H_RoundRectangle( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, ;
<ToCol>, <Width>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], ;
<.lwidth.>, <.lcolor.>, <.lStyle.>, <nStyle>, <.lBrushStyle.>, ;
<nBrStyle>, <.lBrushColor.>, <aBrColor> )
#xcommand @ <Row>, <Col> PRINT FILL TO <ToRow>, <ToCol> ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUESHCOLOR> <aBrColor> ] ;
=> ;
_HMG_PRINTER_H_Fill( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, <ToCol>, ;
<aColor>\[1\], <aColor>\[2\], <aColor>\[3\], <.lcolor.>, ;
<.lBrushStyle.>, <nBrStyle>, <.lBrushColor.>, <aBrColor> )
#xcommand @ <Row>, <Col> PRINT RECTANGLE TO <ToRow>, <ToCol> ;
[ <lwidth: PENWIDTH> <Width> ] ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lStyle: STYLE> <nStyle> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUSHCOLOR> <aBrColor> ] ;
ROUNDED ;
=> ;
_HMG_PRINTER_H_RoundRectangle( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, ;
<ToCol>, <Width>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], ;
<.lwidth.>, <.lcolor.>, <.lStyle.>, <nStyle>, <.lBrushStyle.>, ;
<nBrStyle>, <.lBrushColor.>, <aBrColor> )
#xcommand @ <Row>, <Col> PRINT ELLIPSE TO <ToRow>, <ToCol> ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUESHCOLOR> <aBrColor> ] ;
=> ;
_HMG_PRINTER_H_Ellipse( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, ;
<ToCol>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], <.lcolor.>, ;
<.lBrushStyle.>, <nBrStyle>, <.lBrushColor.>, <aBrColor> )
#xcommand @ <Row>, <Col> PRINT ARC TO <ToRow>, <ToCol> ;
LIMITS <x1>, <y1>, <x2>, <y2> ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUESHCOLOR> <aBrColor> ] ;
=> ;
_HMG_PRINTER_H_Arc( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, <ToCol>, ;
<x1>, <y1>, <x2>, <y2>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], ;
<.lcolor.>, <.lBrushStyle.>, <nBrStyle>, <.lBrushColor.>, <aBrColor> )
#xcommand @ <Row>, <Col> PRINT PIE TO <ToRow>, <ToCol> ;
LIMITS <x1>, <y1>, <x2>, <y2> ;
[ <lcolor: COLOR> <aColor> ] ;
[ <lBrushStyle: BRUSHSTYLE> <nBrStyle> ] ;
[ <lBrushColor: BRUESHCOLOR> <aBrColor> ] ;
=> ;
_HMG_PRINTER_H_Pie( _HMG_PRINTER_hDC, <Row>, <Col>, <ToRow>, <ToCol>, ;
<x1>, <y1>, <x2>, <y2>, <aColor>\[1\], <aColor>\[2\], <aColor>\[3\], ;
<.lcolor.>, <.lBrushStyle.>, <nBrStyle>, <.lBrushColor.>, <aBrColor> )