IBrowserUpdateBoundsRequested Event | 
 
                Occurs when JavaScript requests to update bounds of the Browser instance.
            
 
    Namespace: 
   DotNetBrowser.Browser
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.15.1
Syntax
Exceptions| Exception | Condition | 
|---|
| ObjectDisposedException | The IBrowser has already been disposed. | 
Remarks
                JavaScript can request to update bounds of the Browser instance through the
                following JavaScript functions:
                
- window.moveTo() - 
                            moves a window to the specified position.
                        
 - window.moveBy() - 
                            moves a window a specified number of pixels relative to its
                            current coordinates.
                        
 - window.resizeTo() - 
                            resizes the window to the specified width and height.
                        
 - window.resizeBy() - 
                            resizes the window by the specified pixels.
                        
 
See Also