XmlMappedRange.FindNext(Object) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
public Microsoft.Office.Interop.Excel.Range FindNext (object After);
abstract member FindNext : obj -> Microsoft.Office.Interop.Excel.Range
Public Function FindNext (Optional After As Object) As Range
매개 변수
- After
- Object
검색할 셀의 바로 앞 셀입니다. 사용자 인터페이스에서 검색할 경우 이것은 활성 셀의 위치에 해당됩니다. After
컨트롤의 단일 셀 XmlMappedRange 이어야 합니다. 이 셀의 다음 셀부터 검색이 시작되며, 지정된 셀은 메서드가 이 셀까지 다시 돌아올 때까지 검색되지 않습니다. 이 인수를 지정하지 않으면 XmlMappedRange 컨트롤의 왼쪽 위 모퉁이에 있는 셀의 다음 셀부터 검색이 시작됩니다.
반환
지정된 정보가 포함된 셀을 나타내는 Range입니다.
예제
다음 코드 예제에서는 의 값을 XmlMappedRange 문자열 "Smith"로 설정한 다음 , FindNext및 FindPrevious 메서드를 사용하여 Find문자열 "Smith"가 있는 첫 번째 셀을 찾습니다. 는 XmlMappedRange 항상 정확히 하나의 셀을 포함하므로 각 경우에 동일한 셀이 있습니다. 이 코드 예제에서는 현재 워크시트에 라는 가 CustomerLastNameCell
포함되어 있다고 XmlMappedRange 가정합니다.
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);
}
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
설명
메서드에 지정된 조건과 일치하는 다음 셀을 Find 찾고 해당 셀을 나타내는 을 Range 반환합니다.
이 메서드는 선택 영역 또는 활성 셀에 영향을 주지 않습니다.
검색이 지정된 검색 범위의 끝에 도달하면 범위의 시작 부분으로 래핑됩니다. 이 랩어라운드가 발생할 때 검색을 중지하려면 처음 찾은 셀의 주소를 저장한 다음 이 저장된 주소에 대해 연속된 각 찾기 셀 주소를 테스트합니다.
선택적 매개 변수
선택적 매개 변수에 대한 자세한 내용은 Office 솔루션의 선택적 매개 변수를 참조하세요.