How do I get the HTMLViewer to show the page title for my help pages?
I think that is a two part question.
How is the HTMLViewer different from normal XOJO windows, like for the title property?
I do nothing with Html, so I may be asking the above one backwards.
How do I get the html page title to the HTMLViewer.Title?
HTMLViewer doesn’t stem from the Window/Container paradigm, and has no visible Title.
If you’re trying to get the <title>Webpage Title</title>
into the Window titlebar, add an Event Handler for https://documentation.xojo.com/api/deprecated/htmlviewer.html#htmlviewer-titlechanged
That would explain why it’s not a property.
Thanks.