Platforms to show: All Mac Windows Linux Cross-Platform

Back to IENavigatorMBS class.

IENavigatorMBS.AppCodeName as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the code name.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.AppCodeName

Returns "Mozilla". Returned by Internet Explorer and Netscape Navigator.
(Read only property)

IENavigatorMBS.AppMinorVersion as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the application's minor version value.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.AppMinorVersion

Example value: ";SP2;"
e.g. "0"
(Read only property)

IENavigatorMBS.AppName as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the name of the browser.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.AppName

Example value: "Microsoft Internet Explorer"
(Read only property)

IENavigatorMBS.AppVersion as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the platform and version of the browser.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.AppVersion

Example value: "4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"
(Read only property)

IENavigatorMBS.BrowserLanguage as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the current browser language.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.BrowserLanguage

Example value: "de"
(Read only property)

IENavigatorMBS.CookieEnabled as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves whether client-side persistent cookies are enabled in the browser.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

if a.CookieEnabled then
msgbox "Cookie enabled"
else
msgbox "Cookie disabled"
end if

Persistent cookies are those that are stored on the client-side computer.
Example value: True
(Read only property)

IENavigatorMBS.CPUClass as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves a string denoting the CPU class.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.CPUClass

Returns "x86" for Intel processor.
(Read only property)

IENavigatorMBS.Handle as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
The internal object reference.

(Read only property)

IENavigatorMBS.JavaEnabled as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Returns whether Java is enabled.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

if a.JavaEnabled then
msgbox "Java enabled"
else
msgbox "Java disabled"
end if

Example value: True
(Read only property)

IENavigatorMBS.OnLine as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves a value indicating whether the system is in global offline mode.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.OnLine

The user can modify the global offline state by choosing Work Offline from the File menu in Microsoft Internet Explorer version 4.0 or later. This property does not indicate whether the system is connected to the network.

Example value: True
(Read only property)

IENavigatorMBS.Platform as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the name of the user's operating system.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.Platform

Returns "Win64" for Windows 64-bit platform.
Returns "Win32" for Windows 32-bit platform.
(Read only property)

IENavigatorMBS.SystemLanguage as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the default language used by the operating system.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.SystemLanguage

msgbox a.AppCodeName

The systemLanguage property reflects the language edition of the installed operating system.
e.g. de-DE
(Read only property)

IENavigatorMBS.UserAgent as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves a string equivalent to the HTTP user-agent request header.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.UserAgent

The HTTP user-agent request header contains information about compatibility, the browser, and the platform name. For more information about the browser, see the IENavigatorappNameMBS property. For more information about the platform, see the IENavigatorappVersionMBS property.

The IENavigatoruserAgentMBS property dynamically returns a different value depending on the browser and platform versions. For example, Microsoft Internet Explorer 6 returns the following string for Microsoft Windows XP.

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)

Example value: "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"

Like other plugin function, this can only work if a page has been loaded. Xojo won't create the internal htmlviewer object before you load a page.
(Read only property)

IENavigatorMBS.UserLanguage as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property HTMLViewer Win MBS Win Plugin 20.0 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Retrieves the operating system's natural language setting.
Example
dim w as IEDocumentMBS = HTMLViewer1.IEDocumentMBS
dim a as IENavigatorMBS = w.Navigator

msgbox a.AppCodeName

Example value: "de-DE"
(Read only property)

The items on this page are in the following plugins: MBS Win Plugin.


The biggest plugin in space...