$wrap: Difference between revisions

From Scriptwiki
Jump to navigation Jump to search
Daveoh (talk | contribs)
No edit summary
 
(No difference)

Latest revision as of 04:59, 11 August 2008

Returns Nth line in text wrapped to the specified width in pixels.

$wrap(text, font, size, width, [word,] N)

If the optional word parameter is 1, text is wrapped at whole words (which is the default).

You can specify 0 for N to return the total number of wrapped lines.

Example

$wrap(The quick brown fox jumped over the lazy dog., Arial, 12, 100, 0)

Returns "3" for the total number of lines.

$wrap(The quick brown fox jumped over the lazy dog., Arial, 12, 100, 3)

Returns "the lazy dog."

$wrap(The quick brown fox jumped over the lazy dog., Arial, 12, 100, 0, 2)

Returns "ox jumped over th"

See Also