Use this function to get a word wrap of the data you wish to output on lcd. If the length of a line is greater then the number of characters a lcd can display, the line is warped into next line. The function demands the following parameters:
Parameter 1 -> string
Parameter 2 -> width of word wrap block (optional parameter)
Parameter 3 -> word wrap block horizontal offset (optional parameter)
Example:
%Format.WordWrap("wrap this text on my lcd",16,5)
This function wrapts the sting "wrap this text on my lcd" to next line if the text is more then 16 chars of width, this condition is true so a word wrap occured and the text is displayed with a horizontzal offset of 5.