8db832ff4c
* BUG: Hitting Escape while editing a variable does not hide the debugger panel anymore. [GB.EVAL.HIGHLIGHT] * NEW: The component is not deprecated anymore. * NEW: Move the new TextHighlighter class from 'gb.form.editor' to 'gb.eval.highlight'. * NEW: TextHighlighter[] returns a specific highlighter from its name. * NEW: TextHighlighter.ToHTML() is a new method that converts a text into highligted HTML. [GB.GUI.BASE] * BUG: Fix Paint.TrimText() routine that trimmed badly is some cases. git-svn-id: svn://localhost/gambas/trunk@7105 867c0c6c-44f3-4631-809d-bfa615b0a4ec
11 lines
171 B
Text
11 lines
171 B
Text
' Gambas class file
|
|
|
|
Inherits TextHighlighter
|
|
|
|
Public Const Name As String = "webpage"
|
|
|
|
Public Sub Run(sText As String)
|
|
|
|
TextHighlighter_Html.RunWebpage(sText)
|
|
|
|
End
|