RichEditTextRange.FindText(String, Int32, FindOptions) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
搜索区域中的特定文本字符串,如果找到,则选择该字符串。
public:
virtual int FindText(Platform::String ^ value, int scanLength, FindOptions options) = FindText;
int FindText(winrt::hstring const& value, int const& scanLength, FindOptions const& options);
public int FindText(string value, int scanLength, FindOptions options);
function findText(value, scanLength, options)
Public Function FindText (value As String, scanLength As Integer, options As FindOptions) As Integer
参数
- value
-
String
Platform::String
winrt::hstring
要搜索的文本字符串。
- scanLength
-
Int32
int
要搜索的最大字符数。 可以是以下项之一。
- options
- FindOptions
执行文本搜索时要使用的选项。
返回
Int32
int
匹配文本字符串的长度;如果未找到匹配字符串,则为零。
实现
M:Microsoft.UI.Text.ITextRange.FindText(System.String,System.Int32,Microsoft.UI.Text.FindOptions)
M:Microsoft.UI.Text.ITextRange.FindText(Platform::String,int,Microsoft.UI.Text.FindOptions)
M:Microsoft.UI.Text.ITextRange.FindText(winrt::hstring,int,Microsoft.UI.Text.FindOptions)