Class WebBackForwardList

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

WebBackForwardList is a class for back-forward list of web view.

C#
Copy
public class WebBackForwardList : Disposable
Inheritance
WebBackForwardList

Properties

View Source

ItemCount

Get item count.

Declaration
C#
Copy
public uint ItemCount { get; }
Property Value
Type Description
UInt32

Methods

View Source

Dispose(DisposeTypes)

Dispose for IDisposable pattern

Declaration
C#
Copy
protected override void Dispose(DisposeTypes type)
Parameters
Type Name Description
DisposeTypes type
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
C#
Copy
public IList<WebBackForwardListItem> GetBackwardItems(int limit)
Parameters
Type Name Description
Int32 limit

The number of items to retrieve.

Returns
Type Description
IList<WebBackForwardListItem>
View Source

GetCurrentItem()

Get current item.

Declaration
C#
Copy
public WebBackForwardListItem GetCurrentItem()
Returns
Type Description
WebBackForwardListItem
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
C#
Copy
public IList<WebBackForwardListItem> GetForwardItems(int limit)
Parameters
Type Name Description
Int32 limit

The number of items to retrieve.

Returns
Type Description
IList<WebBackForwardListItem>
View Source

GetItemAtIndex(Int32)

Get item with index.

Declaration
C#
Copy
public WebBackForwardListItem GetItemAtIndex(int index)
Parameters
Type Name Description
Int32 index

The index of list item.

Returns
Type Description
WebBackForwardListItem
View Source

GetNextItem()

Get next item.

Declaration
C#
Copy
public WebBackForwardListItem GetNextItem()
Returns
Type Description
WebBackForwardListItem
View Source

GetPreviousItem()

Get previous item.

Declaration
C#
Copy
public WebBackForwardListItem GetPreviousItem()
Returns
Type Description
WebBackForwardListItem

Extension Methods