Webview zoom question

jmeuse2

Member
Licensed User
Longtime User
I made a web page with text only and in the text properties I have it size the layout to the text and wrap the contents to the browser width. The web page displays properly in webview and the contents properly wrap within webviews width when I zoom in but when I zoom in the browser width becomes larger than the width of the webview permitting the user to scroll horizontally into miles of empty white space and become lost.

Is there a work around to this?
 
Last edited:

KZero

Active Member
Licensed User
Longtime User
you can disable webview zoom from The Designer or you can add this code to Activity_Create sub

WebView1.ZoomEnabled=False
 
Upvote 0
Top