ToolStripComboBox.FindString 方法

定义

查找 ToolStripComboBox 中以指定字符串开始的第一个项。

重载

FindString(String)

查找 ToolStripComboBox 中以指定字符串开始的第一个项。

FindString(String, Int32)

在给定索引后查找以给定字符串开始的第一项。

FindString(String)

查找 ToolStripComboBox 中以指定字符串开始的第一个项。

public:
 int FindString(System::String ^ s);
public int FindString (string s);
member this.FindString : string -> int
Public Function FindString (s As String) As Integer

参数

s
String

要搜索的 String

返回

Int32

找到的第一个项的从零开始的索引;如果未找到匹配项,则返回 -1。

注解

此方法执行的搜索不区分大小写。 该 s 参数是一个子字符串,用于与组合框列表中的项关联的文本进行比较。 搜索从文本开头开始执行部分匹配,并返回与指定子字符串匹配的列表中的第一项。 然后,可以执行任务,例如删除包含搜索文本的项或更改项目的文本。 找到指定文本后,如果要搜索该文本中的其他 ToolStripComboBox实例,请使用 FindString 方法在内 ToolStripComboBox指定起始索引。 如果要对确切的单词匹配执行搜索,而不是部分匹配,请使用该方法 FindStringExact

适用于

FindString(String, Int32)

在给定索引后查找以给定字符串开始的第一项。

public:
 int FindString(System::String ^ s, int startIndex);
public int FindString (string s, int startIndex);
member this.FindString : string * int -> int
Public Function FindString (s As String, startIndex As Integer) As Integer

参数

s
String

要搜索的 String

startIndex
Int32

项的从零开始的索引,该项在要搜索的第一个项之前。 设置为 -1,以从控件的开始处搜索。

返回

Int32

找到的第一个项的从零开始的索引;如果未找到匹配项,则返回 -1。

注解

此方法执行的搜索不区分大小写。 该 s 参数是一个子字符串,用于与组合框列表中的项关联的文本进行比较。 搜索从指定索引处的文本开头开始执行部分匹配,并返回与指定子字符串匹配的列表中的第一项。 然后,可以执行任务,例如删除包含搜索文本的项或更改项目的文本。 找到指定文本后,如果要搜索该文本中的其他 ToolStripComboBox实例,请使用此方法在内 ToolStripComboBox指定起始索引。 如果要对确切的单词匹配执行搜索,而不是部分匹配,请使用该方法 FindStringExact

适用于