System Font in HTML Viewer

iPad app. Using system font for all controls and text. Would like to use it in HTMLViewer (for help).

Is this possible?

I have not done any work in Xojo on iOS but the approach I’d take on the desktop would be to modify the CSS displayed in the HTMLViewer to use the system font. Make sure your font-family is -apple-system and it should do the rest. Obviously provide some fallback fonts in case it’s ever viewed on a non-apple system.

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

Christian,

Thanks. That looks like it works.