home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff267.lzh / Diglib / diglib.zoo / diglib / GSSLEN.FOR < prev    next >
Text File  |  1989-06-20  |  244b  |  13 lines

  1.     FUNCTION GSSLEN(NCHARS)
  2. C
  3. C    This function returns the length in virtual coordinates of
  4. C     a string of length NCHARS. The current character size is assumed.
  5. C
  6.     INCLUDE GCCPAR.PRM
  7. C
  8.     EXTERNAL LEN
  9. C
  10.     GSSLEN = (GSCWID()*CSIZE)*NCHARS
  11.     RETURN
  12.     END
  13.