boolean canGoForward()

Determines if the browser can go forward. This can be called from a browser or a toolbar. If called from a toolbar, it will determine if the browser associated with the toolbar can go forward.

Security

Trust Level Required: None

Return

True if the browser can go forward.

Example


var url = "https://m.kioware.com/api";                           
KioBrowser.loadURL(url);
KioBrowser.goBack();
if (KioBrowser.canGoForward())
    KioBrowser.goForward();
                            

Requirements

KioWare for Android version 4.0 or greater.