XmlMappedRange.FindNext メソッド
Find メソッドで開始された検索を続行します。
名前空間: Microsoft.Office.Tools.Excel
アセンブリ: Microsoft.Office.Tools.Excel (Microsoft.Office.Tools.Excel.dll 内)
構文
'宣言
Function FindNext ( _
After As Object _
) As Range
Range FindNext(
Object After
)
パラメーター
- After
型 : System.Object
検索位置を示すセルです。このセルの次から検索されます。これは、ユーザー インターフェイスから検索を行う場合のアクティブ セルの位置に相当します。 After は XmlMappedRange コントロール内の単一のセルである必要があります。検索はこのセルの次から開始されることに注意してください。指定したセル自体が検索されるのは、メソッドがラップしてそのセルに戻ってきたときです。この引数を指定しなかった場合、検索は XmlMappedRange コントロールの左上隅のセルの後から開始されます。
戻り値
型 : Microsoft.Office.Interop.Excel.Range
指定した情報が含まれているセルを表す Range を返します。
解説
Find メソッドで指定した条件に一致する次のセルを検索し、そのセルを表す Range を返します。
このメソッドは、選択またはアクティブ セルに影響を与えません。
指定した検索範囲の末尾に達すると、検索範囲の先頭にラップします。このようなラップが発生したときに検索を停止するには、最初に見つかったセルのアドレスを保存しておき、それ以降に見つかった各セルのアドレスを、保存しておいたアドレスと比較します。
省略可能なパラメーター
省略可能なパラメーターについては、「Office ソリューションの省略可能なパラメーター」を参照してください。
例
次のコード例は、XmlMappedRange の値を文字列 "Smith" に設定し、Find、FindNext、および FindPrevious の各メソッドを使用して、文字列 "Smith" が含まれている最初のセルを検索します。XmlMappedRange に含まれているのは常に 1 つのセルのみなので、毎回同じセルが見つかります。このコード例では、現在のワークシートに CustomerLastNameCell という名前の XmlMappedRange が含まれているものと仮定しています。
Private Sub FindSmith()
Me.CustomerLastNameCell.Value2 = "Smith"
' Use Find to get the range with "Smith".
Dim range1 As Excel.Range = Me.CustomerLastNameCell.Find( _
"Smith", SearchDirection:=Excel.XlSearchDirection.xlNext)
Dim address1 As String = range1.Address(ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
MsgBox("Find method found the range: " & address1)
' Use FindNext to get the range with "Smith".
Dim range2 As Excel.Range = Me.CustomerLastNameCell.FindNext(range1)
Dim address2 As String = range2.Address(ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
MsgBox("FindNext method found the range: " & address2)
' Use FindPrevious to get the range with "Smith".
Dim range3 As Excel.Range = Me.CustomerLastNameCell.FindPrevious(range2)
Dim address3 As String = range3.Address(ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
MsgBox("FindPrevious method found the range: " & address3)
End Sub
private void FindSmith()
{
this.CustomerLastNameCell.Value2 = "Smith";
// Use Find to get the range with "Smith".
Excel.Range range1 = this.CustomerLastNameCell.Find("Smith",
Excel.XlSearchDirection.xlNext);
string address1 = range1.get_Address(missing, missing,
Excel.XlReferenceStyle.xlA1);
MessageBox.Show("Find method found the range: " + address1);
// Use FindNext to get the range with "Smith".
Excel.Range range2 = this.CustomerLastNameCell.FindNext(range1);
string address2 = range2.get_Address(
Excel.XlReferenceStyle.xlA1);
MessageBox.Show("FindNext method found the range: " + address2);
// Use FindPrevious to get the range with "Smith".
Excel.Range range3 = this.CustomerLastNameCell.FindPrevious(range2);
string address3 = range3.get_Address(
Excel.XlReferenceStyle.xlA1);
MessageBox.Show("FindPrevious method found the range: " + address3);
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。