FunctionPackage: cgToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version

stream-string-corners

Arguments: stream string &optional start end

Use of the function is deprecated. Use stream-string-width and line-height instead.

Returns as multiple values four position objects defined as follows:

  1. (make-position 0 0)
  2. (make-position 0 (line-height stream))
  3. (make-position (stream-string-width stream string start end) 0)
  4. (make-position (stream-string-width stream string start end) (line-height stream))

See line-height and stream-string-width. The returned values are not meaningful if string (or the substring specified by start and end) contains newline characters.

The results describe the area taken up by string (or the substring specified by start and end) if it were printed to stream using the font of stream as returned by font. stream should be a cg-stream.

Because this function returns the same information as line-height and stream-string-width (though in a somewhat different format), its use is deprecated. We recommend you use line-height and stream-string-width instead.

The function nstream-string-corners is the destructive version of this function.


Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page was not revised from the 10.0 page.
Created 2019.8.20.

ToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version