How do I know if Internet Explorer has any scrollbars?
-
Hi all, I have developed a Browser Helper Object (Internet Explorer) and I have smart pointers to my html document, my web browser and so on. Is there any way I can find out if the current document/webpage has any visible scrollbars (horz/vert)? /Tommy
-
Hi all, I have developed a Browser Helper Object (Internet Explorer) and I have smart pointers to my html document, my web browser and so on. Is there any way I can find out if the current document/webpage has any visible scrollbars (horz/vert)? /Tommy
You can get handle to main window by using
IWebBrowser2::get_HWND
. I could not find API to get visibilty of scrollbars. But, see if using this handle , you can find the way out. ie. By using API's likeGetScrollInfo
using handle you got.Prasad Notifier using ATL | Operator new[],delete[][^]