bgiHTMLGoBack

Navigates back one step in the HTMLView control's browsing history. Takes htmlViewID (Int). Returns nothing.

BGI GUI

Parameters & Returns

Parameters

htmlViewID Int

Returns

Void

Quick Summary

Navigates back one step in the HTMLView control's browsing history. Takes htmlViewID (Int). Returns nothing.

Technical Exegesis...

Navigates back one step in the HTMLView control's browsing history. Searches webBrowserMap for htmlViewID. If found, gets IWebBrowser2* interface. Calls pBrowser->GoBack() to navigate to previous page in history stack. No return value.

This function mimics browser's back button functionality. Navigation history is maintained internally by IWebBrowser2 control. GoBack() navigates to previous entry in history stack (if exists).

Example

Example.bam
; No example implemented yet