| 
IDocument
FindStringInLine Method (String, Boolean, Boolean)
  | 
 Finds the first entry of matchString text in single-line mode.
 Namespace:
 Spire.Doc.Interface
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
TextSelection[] FindStringInLine(
	string given,
	bool caseSensitive,
	bool wholeWord
)
 
Function FindStringInLine ( 
	given As String,
	caseSensitive As Boolean,
	wholeWord As Boolean
) As TextSelection()
 
array<TextSelection^>^ FindStringInLine(
	String^ given, 
	bool caseSensitive, 
	bool wholeWord
)
 
abstract FindStringInLine : 
given : string * 
caseSensitive : bool * 
wholeWord : bool -> TextSelection[] 
 
 
 
Parameters
 
- 
given
 
- 
 Type:
 
System
String
 
 
- 
caseSensitive
 
- 
 Type:
 
System
Boolean
 
 if it specifies case sensitive, set to
 
true
 
 .
- 
wholeWord
 
- 
 Type:
 
System
Boolean
 
 if it specifies to search a whole word, set to
 
true
 
 .
Return Value
 
 Type:
 
TextSelection
 
 
 See Also
See Also