setFindOptions method
- @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')])
- FindOptions? options,
Sets the options used for find-on-page operations.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - ICoreWebView2Environment15.CreateFindOptions)
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',
);
}