[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Viewer.Win.Viewer.History

History Property

History

Provides access to the history management functionality of the viewer.

Declaration
[Browsable(false)]
public IHistoryApi History { get; }
Property Value
Type Description
IHistoryApi

An IHistoryApi instance that allows for navigating through the viewer's history.

Remarks

This property enables manipulation of the viewer's navigation history, allowing for operations such as moving forward or backward through previously viewed documents or pages.

Examples
private void ForwardButton_Click(object sender, EventArgs e)
{
    if (viewer.History.Position < viewer.History.Count)
    {
        viewer.History.MoveNext();
    }
}