共用方式為


ToolStripComboBox.FindStringExact 方法

定義

尋找完全符合指定字串的項目。

多載

FindStringExact(String, Int32)

尋找在指定索引之後第一個完全符合指定字串的項目。

FindStringExact(String)

尋找 ToolStripComboBox 中第一個與指定字串完全相符的項目。

FindStringExact(String, Int32)

尋找在指定索引之後第一個完全符合指定字串的項目。

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

參數

s
String

要搜尋的 String

startIndex
Int32

搜尋第一個項目之前,項目以零為起始的索引。 設定為 -1 以便從控制項的開頭進行搜尋。

傳回

Int32

找到第一個項目之以零為起始的索引,如果沒有找到符合的,則傳回 -1。

備註

這個方法執行的搜尋不會區分大小寫。 參數 s 是子字串,可與下拉式方塊清單中的專案相關聯的文字進行比較。 搜尋會從指定索引處的文字開頭開始執行部分比對,並傳回清單中符合指定子字串的第一個專案。 然後,您可以執行工作,例如移除包含搜尋文字的專案,或變更專案的文字。 找到指定的文字之後,如果您想要搜尋 中 ToolStripComboBox 其他確切文字的實例,請使用此方法在 內 ToolStripComboBox 指定起始索引。 如果您想要搜尋部分相符專案,而不是確切字組,請使用 FindString 方法。

適用於

FindStringExact(String)

尋找 ToolStripComboBox 中第一個與指定字串完全相符的項目。

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

參數

s
String

要搜尋的 String

傳回

Int32

找到第一個項目之以零為起始的索引,如果沒有找到相符的,則為 -1。

備註

這個方法執行的搜尋不會區分大小寫。 參數 s 是子字串,可與下拉式方塊清單中的專案相關聯的文字進行比較。 搜尋會從指定索引處的文字開頭開始執行部分比對,並傳回清單中符合指定子字串的第一個專案。 然後,您可以執行工作,例如移除包含搜尋文字的專案,或變更專案的文字。 找到指定的文字之後,如果您想要在 中 ToolStripComboBox 搜尋其他文字範例,請使用 FindString 方法在 內 ToolStripComboBox 指定起始索引。 如果您想要搜尋部分相符專案,而不是確切字組,請使用 FindString 方法。

適用於