bool find(
String string,
bool caseSensitive,
bool backwards,
bool wrap,
bool wholeWord,
bool searchInFrames,
bool showDialog
)

Finds text in this window.

Other resources

Source

/**
 * Finds text in this window.
 *
 * ## Other resources
 *
 * * [Window.find]
 * (https://developer.mozilla.org/en-US/docs/Web/API/Window.find) from MDN.
 */
@DomName('Window.find')
@DocsEditable()
@Experimental() // non-standard
bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) => _blink.BlinkWindow.instance.find_Callback_7_(unwrap_jso(this), string, caseSensitive, backwards, wrap, wholeWord, searchInFrames, showDialog);