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