Search
Last updated
openOpens the search aside.
instance.search.open();closeCloses the search aside.
instance.search.close();queryOpens the search aside and executes a search for the passed query text.
instance.search.query({ text: 'YOUR SEARCH QUERY' });onSearchThis subscription will trigger when a search is performed in the Flipbook.
The callback contains a value/result with the following properties:
query
string
Search query that was used
results
number
Amount of search results found in Flipbook for the query
Last updated
instance.search.onSearch((result) => {
// YOUR CODE HERE
});