Hi,
I am using HTMLEditorWrapper in a project and would like to position the cursor on the first found word using the search function.
Word highlighting manages to do, unfortunately I have no idea how to reveal the cursor position. It's much easier in TextArea.
Something like:
I am using HTMLEditorWrapper in a project and would like to position the cursor on the first found word using the search function.
Word highlighting manages to do, unfortunately I have no idea how to reveal the cursor position. It's much easier in TextArea.
Something like:
Dim jo As JavaObject = TextArea1
Dim event As Object = jo.CreateEventFromUI ("javafx.beans.value.ChangeListener", "SelectionChanged", Null)
jo.RunMethodJO ("selectionProperty", Null) .RunMethod ("addListener", Array (event))