PdfDocument.FindAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| FindAsync(String, NSStringCompareOptions) |
Asynchronously searches for the specified text with the specified comparison options. |
| FindAsync(String[], NSStringCompareOptions) |
Asynchronously searches for the specified text with the specified comparison options. |
FindAsync(String, NSStringCompareOptions)
Asynchronously searches for the specified text with the specified comparison options.
[Foundation.Export("beginFindString:withOptions:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void FindAsync(string text, Foundation.NSStringCompareOptions compareOptions);
[<Foundation.Export("beginFindString:withOptions:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member FindAsync : string * Foundation.NSStringCompareOptions -> unit
override this.FindAsync : string * Foundation.NSStringCompareOptions -> unit
Parameters
- text
- String
The text to find.
- compareOptions
- NSStringCompareOptions
Comparison options to control text matching.
- Attributes
Applies to
FindAsync(String[], NSStringCompareOptions)
Asynchronously searches for the specified text with the specified comparison options.
[Foundation.Export("beginFindStrings:withOptions:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void FindAsync(string[] text, Foundation.NSStringCompareOptions compareOptions);
[<Foundation.Export("beginFindStrings:withOptions:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member FindAsync : string[] * Foundation.NSStringCompareOptions -> unit
override this.FindAsync : string[] * Foundation.NSStringCompareOptions -> unit
Parameters
- text
- String[]
The text to find.
- compareOptions
- NSStringCompareOptions
Comparison options to control text matching.
- Attributes