bgiHTMLRefresh

Reloads the current page in the HTMLView control from its original source. Takes htmlViewID (Int). Returns nothing.

BGI GUI

Parameters & Returns

Parameters

htmlViewID Int

Returns

Void

Quick Summary

Reloads the current page in the HTMLView control from its original source. Takes htmlViewID (Int). Returns nothing.

Technical Exegesis...

Reloads the current page in the HTMLView control from its original source. Searches webBrowserMap for htmlViewID. If found, gets IWebBrowser2* interface. Calls pBrowser->Refresh() to reload current document. No return value.

This function mimics browser's refresh/reload button functionality. Refresh() reloads the current page from its original source. For web URLs (http/https), re-fetches from server (may use cache depending on HTTP headers). For local files (file:///), re-reads from disk.

Example

Example.bam
; No example implemented yet