Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
NavigationToolbar History Deletion
posted

Is there any way to manually remove a history item from the NavigationToolbar?  In my current situation, a previously visited location can be deleted by the user while they are not in that location.  So I need to remove that item from the history.  Is this possible?

Parents
No Data
Reply
  • 37774
    posted

    I don't know that there's any public method exposed that will let you do this.  You may be able to use reflection to get at the private BackHistoryInternal or ForwardHistoryInternal property of the NavigationToolbar, which is of type List<NavigationHistoryItem> and then remove the item that way.  You should also submit a feature request through Developer Support to provide this functionality.

    -Matt

Children