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"
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,258
|
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.aspxSee here for more information on how to apply browser options: https://www.essentialobjects.com/doc/webbrowser/advanced/browser_options.aspxThanks!
|