setFindOptions method

  1. @SupportedPlatforms.new(platforms: [WindowsPlatform(apiName: 'ICoreWebView2Environment15.CreateFindOptions', apiUrl: 'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2environment15?view=webview2-1.0.2849.39#createfindoptions')])
Future<void> setFindOptions({
  1. FindOptions? options,
})

Sets the options used for find-on-page operations.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • options: all platforms

Use the PlatformFindInteractionController.isMethodSupported method to check if this method is supported at runtime.

Implementation

@SupportedPlatforms(
  platforms: [
    WindowsPlatform(
      apiName: 'ICoreWebView2Environment15.CreateFindOptions',
      apiUrl:
          'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2environment15?view=webview2-1.0.2849.39#createfindoptions',
    ),
  ],
)
Future<void> setFindOptions({FindOptions? options}) {
  throw UnimplementedError(
    'setFindOptions is not implemented on the current platform',
  );
}