//    Instruction Example :     long text.char.height.get ()


        screen.resolution.set (512,384)

        screen.set (BACK)
          pattern.display ("avo\bubble.gif")
        screen.end ()

        text.font.select ("arial")
        text.char.height.select (18)
        text.display ("The Font Height is : "+str (text.char.height.get ()),CENTER,CENTER)

        text.font.select ("default")
        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()