Boxes, Lines, Shading: BOX, POSITION, SIZE
Procedure
Use the BOX, POSITION, and SIZE commands for drawing boxes, lines, and shading to print particular windows within a form or passages of text within a window in a frame or with shading.
The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when printing. Line printers and page-oriented printers not supported in the standard ignore these commands. You can view the resulting printer output in the SAPscript print preview.
-
/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
-
/: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
-
/: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
BOX Command
BOX Command/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
Effect: draws a box of the specified size at the specified position.
Additions: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
-
XPOS, YPOS: Upper left corner of the box, relative to the values of the POSITION command.
Default: Values specified in the POSITION command.
The following calculation is performed internally to determine the absolute output position of a box on the page: X(abs) = XORIGIN + XPOS Y(abs) = YORIGIN + YPOS
-
WIDTH: Width of the box. Default: WIDTH value of the SIZE command.
-
HEIGHT: Height of the box. Default: HEIGHT value of the SIZE command.
-
FRAME: Thickness of frame.
Default: 0 (no frame).
-
INTENSITY: Grayscale of box contents as % .
Default: 100 (full black)
Measurements: You must specify decimal measurements as literal values (like ABAP numeric constants) by enclosing them in quotation marks. Use the period as the decimal point character. See also the examples listed below.
Unit: The following units of measurement may be used:
-
TW (twip)
-
PT (point)
-
IN (inch)
-
MM (millimeter)
-
CM (centimeter)
-
LN (line)
-
CH (character)
The following conversion factors apply:
-
1 TW = 1/20 PT
-
1 PT = 1/72 IN
-
1 IN = 2.54 CM
-
1 CM = 10 MM
-
1 CH = height of a character relative to the CPI specification in the form header
-
1 LN = height of a line relative to the LPI specification in the form header
POSITION Command
POSITION Command/: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
Additions: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
-
XORIGIN, YORIGIN: Origin of the coordinate system.
-
WINDOW: Sets the values for the left and upper edges to match those of the current window (default setting).
-
PAGE: Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
SIZE Command
SIZE Command/: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started, the SIZE value is set to the same values as the window itself (default setting).
Additions: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
-
WIDTH, HEIGHT: Dimensions of the rectangle or line.
-
WINDOW: Sets the values for the width and height to the values of the current window (default setting).
-
PAGE: Sets the values for the width and height to the values of the current output page.