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