Class BackForwardList
Definition
- Namespace:
- Tizen.WebView
- Assembly:
- Tizen.WebView.dll
- API Level:
- 6
This class provides the properties of Back Forward list of a specific WebView.
public class BackForwardList
- Inheritance
-
BackForwardList
Properties
View SourceCount
Gets the back forward list count.
Declaration
public uint Count { get; }
Property Value
Type | Description |
---|---|
UInt32 |
API Level: 6
View SourceCurrentItem
Current item of the back forward list.
Declaration
public BackForwardListItem CurrentItem { get; }
Property Value
Type | Description |
---|---|
BackForwardListItem |
Remarks
BackForward List can be null if there is no current item.
API Level: 6
View SourcePreviousItem
Previous item of the back forward list and null if no previous item.
Declaration
public BackForwardListItem PreviousItem { get; }
Property Value
Type | Description |
---|---|
BackForwardListItem |
Remarks
BackForward List can be null if there is no previous item.
API Level: 6
Methods
View SourceBackItems(Int32)
Gets the list containing the items preceding the current item limited by limit.
Declaration
public IList<BackForwardListItem> BackItems(int limit)
Parameters
Type | Name | Description |
---|---|---|
Int32 | limit | limit The number of items to retrieve, if limit -1 all items preceding current item are returned. |
Returns
Type | Description |
---|---|
IList<BackForwardListItem> | The list of the BackForwardListItem of back items. |
API Level: 6
View SourceForwardItems(Int32)
Gets the list containing the items following the current item limited by limit.
Declaration
public IList<BackForwardListItem> ForwardItems(int limit)
Parameters
Type | Name | Description |
---|---|---|
Int32 | limit | limit The number of items to retrieve, if limit is -1 all items following current item are returned. |
Returns
Type | Description |
---|---|
IList<BackForwardListItem> | The list of the BackForwardListItem of forward items. |