====== CALCTEXT Set_Printer Message ====== ==== Description ==== The CALCTEXT message is used to calculate the width and height of a text string. The current font information, line spacing, and page size is used to calculate the height and width of the text. Use the Get_Printer CALCTEXT message to retrieve the width and height of the text after setting the text with the CALCTEXT message. ==== Parameters ==== ^Parameter^Description of Fields^Comments^Default^ |Parm1 - Text|<1> Text|Text to calculate width and height|""| ==== Example ==== * The following example shows how to use the CALCTEXT message. declare function Set_Printer stat = Set_Printer("INIT") ;* Start printing stat = Set_Printer("CALCTEXT", "This is a test. ") size = Get_Printer("CALCTEXT") ;* get the size textWidth = size<1> ;* width of the text textHeight = size<2> ;* height of the text stat = Set_Printer("TERM") ;* End printing