BrowserNavConstantsBrowserNavConstants*
*



Contents  *



Index  *Topic Contents
*Previous Topic: Enumerations
*Next Topic: CommandStateChangeConstants

BrowserNavConstants

typedef enum BrowserNavConstants {
    navOpenInNewWindow = 0x1,
    navNoHistory       = 0x2,
    navNoReadFromCache = 0x4,
    navNoWriteToCache  = 0x8
    navAllowAutosearch = 0x10,
    navBrowserBar      = 0x20
} BrowserNavConstants;

Contains values used by the IWebBrowser2::Navigate and IWebBrowser2::Navigate2 methods.

Values
navOpenInNewWindow Open the resource or file in a new window.
navNoHistory Do not add the resource or file to the history list. The new page replaces the current page in the list.
navNoReadFromCache Not used.
navNoWriteToCache Not used.
navAllowAutosearch If the navigation fails, the autosearch functionality will attempt to navigate common root domains (.com, .edu, and so on). If this still fails, the URL will be passed to a search engine.
navBrowserBar Causes the current Explorer Bar to navigate to the given item, if possible.

See also DWebBrowserEvents2::BeforeNavigate2, DWebBrowserEvents2::NavigateComplete2, DWebBrowserEvents2::NewWindow2


Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.