Welcome Guest Search | Active Topics | Sign In | Register

hide scroll bar Options
B.e.s.t
Posted: Wednesday, January 23, 2019 12:34:24 AM
Rank: Newbie
Groups: Member

Joined: 1/22/2019
Posts: 2
I'm developer in vb.net. I want to hide the scroll bars .
there is any way to do it without html code ?
like in System.Windows.Forms.WebBrowser
"Me.WebBrowser1.ScrollBarsEnabled = False"
eo_support
Posted: Wednesday, January 23, 2019 12:05:45 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,066
Hi,

You will need to apply the following CSS styles:

Code: CSS
body {
    overflow:hidden;
}


You can either modify the input HTML file or apply it through this property:

https://www.essentialobjects.com/doc/eo.webengine.browseroptions.userstylesheet.aspx

See here for more information on how to apply browser options:

https://www.essentialobjects.com/doc/webbrowser/advanced/browser_options.aspx

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.