bgiHTMLStop

Stops all current loading operations in the HTMLView control. Takes htmlViewID (Int). Returns nothing.

BGI GUI

Parameters & Returns

Parameters

htmlViewID Int

Returns

Void

Quick Summary

Stops all current loading operations in the HTMLView control. Takes htmlViewID (Int). Returns nothing.

Technical Exegesis...

Stops all current loading operations in the HTMLView control. Searches webBrowserMap for htmlViewID. If found, gets IWebBrowser2* interface. Calls pBrowser->Stop() to halt navigation and resource loading. No return value.

This function mimics browser's stop button functionality. Stop() immediately cancels ongoing page load operations. Halts HTML download, image loading, script execution, CSS fetching, and all other pending HTTP requests.

Example

Example.bam
; No example implemented yet