BrowserNavigationEvent
classin packageklyn.gui.windows.browser
public class BrowserNavigationEvent extends GuiEvent:
└ BrowserNavigationEvent

Navigation event emitted before or after a browser location change.

Example
browser.navigating += lambda(event: BrowserNavigationEvent): print(event.url)
Properties
Modifier and Type Member Description
public readonly property historyNavigation
historyNavigation as Boolean
Whether this navigation comes from history traversal.
public readonly property url
url as String
Requested or effective URL.
Inherited Properties
propertyInherited Properties from Event: source, timestamp
Constructors
Modifier and Type Member Description
public BrowserNavigationEvent
BrowserNavigationEvent(source as Object, url as String, historyNavigation as Boolean = false):
Creates a navigation event.