INavigationRemoveEntryAt Method  | 
 
                Removes the item at the given index from the back-forward list
                and returns true if it was removed successfully.
            
 
    Namespace: 
   DotNetBrowser.Navigation
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.24.0
Syntaxbool RemoveEntryAt(
	int index
)
Parameters
- index
 - Type: SystemInt32
                The location of the item to remove in the back-forward list.
                Cannot be negative, point to the current item, or more than the number of items in the back-forward list.
             
Return Value
Type: 
Booleanreturns true if the item was removed successfully.
Exceptions| Exception | Condition | 
|---|
| ArgumentOutOfRangeException | 
                The index is less than 0 or more than the
                number of items in the back-forward list.
             | 
| ObjectDisposedException | The INavigation has already been disposed. | 
See Also