[]
ReportViewer.HistoryApi
Defines the contract for viewer history navigation.
example
const history = {} as HistoryApi;
history.movePrev();
▸ canMoveNext(): boolean
Gets a value indicating whether a forward navigation is available.
example
const history = {} as HistoryApi;
const canMove = history.canMoveNext();
boolean
true if forward navigation is available; otherwise, false.
▸ canMovePrev(): boolean
Gets a value indicating whether a backward navigation is available.
example
const history = {} as HistoryApi;
const canMove = history.canMovePrev();
boolean
true if backward navigation is available; otherwise, false.
▸ clear(): void
Clears all history entries.
example
const history = {} as HistoryApi;
history.clear();
void
▸ moveNext(): void
Navigates to the next entry in the browsing history.
example
const history = {} as HistoryApi;
history.moveNext();
void
▸ movePrev(): void
Navigates to the previous entry in the browsing history.
example
const history = {} as HistoryApi;
history.movePrev();
void