Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
WebBackForwardList is a class for back-forward list of web view.
public class WebBackForwardList : Disposable
- Inheritance
-
Properties
Declaration
public uint ItemCount { get; }
Property Value
Methods
View Source
Dispose(DisposeTypes)
Dispose for IDisposable pattern
Declaration
protected override void Dispose(DisposeTypes type)
Parameters
Overrides
View Source
GetBackwardItems(Int32)
Get copied backward items preceding the current item and limited by limit.
Item in returned list starts with the oldest one.
If limit is equal to ItemCount - 1, all the items preceding the current item are returned.
Declaration
public IList<WebBackForwardListItem> GetBackwardItems(int limit)
Parameters
Type |
Name |
Description |
Int32 |
limit |
The number of items to retrieve.
|
Returns
Declaration
public WebBackForwardListItem GetCurrentItem()
Returns
View Source
GetForwardItems(Int32)
Get copied forward items following the current item and limited by limit.
Item in returned list starts with the oldest one.
If limit is equal to ItemCount - 1, all the items preceding the current item are returned.
Declaration
public IList<WebBackForwardListItem> GetForwardItems(int limit)
Parameters
Type |
Name |
Description |
Int32 |
limit |
The number of items to retrieve.
|
Returns
Declaration
public WebBackForwardListItem GetItemAtIndex(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
The index of list item.
|
Returns
Declaration
public WebBackForwardListItem GetNextItem()
Returns
Declaration
public WebBackForwardListItem GetPreviousItem()
Returns
Extension Methods