Previous: inqtfn Up: ../plot79_i.html Next: inqtpa


INQTJU

       SUBROUTINE  INQTJU (STRATR,BOXATR)
 C$    (Inquire Text Justification Attributes)
 C$    Return the  current  text  justification  attributes.   The
 C$    arguments STRATR and BOXATR should be INTEGER arrays  large
 C$    enough to  hold a  packed six-character  Hollerith  string.
 C$    The strings  returned  will  be  blank  padded  to  a  host
 C$    fullword boundary.   The  string  justification  attribute,
 C$    STRATR, will be returned as one of:
 C$
 C$    "FIRST " - Current point denotes position of first
 C$               character to be drawn.
 C$    "CENTER" - Current point denotes position of center of text
 C$               string parallellogram.
 C$    "LAST  " - Current point denotes position of a character
 C$               which would  follow  the last  character  to  be
 C$               drawn.
 C$
 C$    The box justification attribute,  BOXATR, will be  returned
 C$    as one of:
 C$
 C$    "BOTTOM" - Boxes shifted so that descenders of lower-case
 C$               letters g, p, q, and y just touch the path.
 C$    "OFF   " - Boxes aligned with upper-case baseline lying
 C$               along path.  This is the default.
 C$    "CENTER" - Boxes aligned with symbol centers lying along
 C$               path.
 C$    "TOP   " - Boxes aligned with tops of upper-case letters
 C$               lying along path.
 C$
 C$    If an attribute is not currently known, the string "UNSET "
 C$    will be returned; this may be due to incorrect CORE  system
 C$    initialization on  the part  of the  user, or  an  internal
 C$    software error.
 C$    (06-SEP-82)