| Package | qnx.media |
| Class | public class HistoryItem |
| Inheritance | HistoryItem Object |
HistoryItem object represents a page in the browsing history of a QNXStageWebView.
See also
| Property | Defined By | ||
|---|---|---|---|
| isPost : Boolean
Determines whether this page was the result of a post or not. | HistoryItem | ||
| originalUrl : String
Determines the URL that was originally navigated to, before any possible redirections. | HistoryItem | ||
| title : String
Determines the title of the page. | HistoryItem | ||
| url : String
Determines the URL of the browser, after any redirections. | HistoryItem | ||
| Method | Defined By | ||
|---|---|---|---|
HistoryItem(_isPost:Boolean = false, _originalUrl:String, _title:String, _url:String)
Creates a HistoryItem object. | HistoryItem | ||
| isPost | property |
isPost:BooleanDetermines whether this page was the result of a post or not.
public function get isPost():Boolean public function set isPost(value:Boolean):void| originalUrl | property |
originalUrl:StringDetermines the URL that was originally navigated to, before any possible redirections.
public function get originalUrl():String public function set originalUrl(value:String):void| title | property |
title:StringDetermines the title of the page.
public function get title():String public function set title(value:String):void| url | property |
url:StringDetermines the URL of the browser, after any redirections.
public function get url():String public function set url(value:String):void| HistoryItem | () | Constructor |
public function HistoryItem(_isPost:Boolean = false, _originalUrl:String, _title:String, _url:String)
Creates a HistoryItem object.
_isPost:Boolean (default = false) — true if this page is a post.
| |
_originalUrl:String — A String representing the original URL.
| |
_title:String — A String representing the page title.
| |
_url:String — A String representing the URL, after any redirections.
|