Sdílet prostřednictvím


XmlMappedRange.FindPrevious – metoda

Pokračuje v hledání, které bylo zahájeno s Find metody.

Obor názvů:  Microsoft.Office.Tools.Excel
Sestavení:  Microsoft.Office.Tools.Excel (v Microsoft.Office.Tools.Excel.dll)

Syntaxe

'Deklarace
Function FindPrevious ( _
    After As Object _
) As Range
Range FindPrevious(
    Object After
)

Parametry

  • After
    Typ: System.Object
    Buňka, před který chcete hledat.To odpovídá umístění aktivní buňky při vyhledávání se provádí z uživatel rozhraní.Všimněte si, že After musí být v jedné buňce XmlMappedRange řízení.Nezapomeňte, že hledání začne před této buňky; zadané buňky je prohledána, dokud metoda neobteče zpět do této buňky.Pokud tento argument není zadán, hledání začíná před levou horní buňku XmlMappedRange řízení.

Vrácená hodnota

Typ: Microsoft.Office.Interop.Excel.Range
A Range , představuje buňka obsahující zadané informace.

Poznámky

Najde předchozí buňky odpovídá podmínkám stanoveným pro Find metoda a vrátí Range objekt , který představuje dané buňky.

Tato metoda nemá vliv na výběr nebo aktivní buňky.

Volitelné parametry

Informace o volitelných parametrů, viz The Variable missing and Optional Parameters in Office Solutions.

Příklady

Následující kód například nastaví hodnotu XmlMappedRange řetězec "Smith" a používá Find, FindNext, a FindPrevious metody najít první buňku s řetězcem "Smith". Protože XmlMappedRange vždy obsahuje právě jeden buňky stejné buňce nachází v každém případě. Tento kód příklad předpokládá, že obsahuje aktuální list XmlMappedRange s názvem CustomerLastNameCell.

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",
        missing, missing, missing, missing, Excel.XlSearchDirection.xlNext,
        missing, missing, missing);
    string address1 = range1.get_Address(missing, missing,
        Excel.XlReferenceStyle.xlA1, missing, missing);
    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(missing, missing, 
        Excel.XlReferenceStyle.xlA1, missing, missing);
    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(missing, missing,
        Excel.XlReferenceStyle.xlA1, missing, missing);
    MessageBox.Show("FindPrevious method found the range: " + address3);
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

XmlMappedRange Rozhraní

Microsoft.Office.Tools.Excel – obor názvů