Hi,
We have posted a new build that added this feature. You can now set BrowserOptions.AllowZooming to false to disable zooming. For example, the following code would disable zooming for all WebViews:
Code: C#
//Call this code before creating any WebView will disable zooming for all WebViews
EO.WebBrowser.BrowserOptions options = new WebBrowser.BrowserOptions();
options.AllowZooming = false;
EO.WebBrowser.Runtime.SetDefaultOptions(options);
The above code sets the default zooming options. You can also set the browser options on individual WebView. See here for more details:
http://www.essentialobjects.com/doc/6/advanced/browser_options.aspxPlease see your private message for the download location of the new build.
Thanks!