Sdílet prostřednictvím


XmlMappedRange.XPath – vlastnost

Získá Microsoft.Office.Interop.Excel.XPath , který představuje XPath mapována na prvek XmlMappedRange ovládacího prvku.

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

Syntaxe

'Deklarace
ReadOnly Property XPath As XPath
XPath XPath { get; }

Hodnota vlastnosti

Typ: Microsoft.Office.Interop.Excel.XPath
Microsoft.Office.Interop.Excel.XPath , Který představuje XPath mapována na prvek XmlMappedRange ovládacího prvku.

Příklady

Následující příklad kódu používá XPath vlastnost, kterou chcete odebrat cesta XPath XmlMappedRange Pokud je výraz XPath "/ ns1:Customer / ns1:LastName".Příkladu se potom zobrazí aktuální cesta XPath XmlMappedRange.Tento kód příklad předpokládá, že obsahuje aktuální list XmlMappedRange s názvem CustomerLastNameCell.

Private Sub RemoveXPath()
    If Me.CustomerLastNameCell.XPath.Value = _
        "/ns1:Customer/ns1:LastName" Then
        Me.CustomerLastNameCell.XPath.Clear()
        MsgBox("Removed matching XPath.")
    End If

    If Me.CustomerLastNameCell.XPath.Value = Nothing Then
        MsgBox("The XmlMappedRange has no XPath.")
    Else
        MsgBox("The XPath of the XmlMappedRange is " & _
            Me.CustomerLastNameCell.XPath.Value)
    End If
End Sub
private void DisplayXPath()
{
    if (this.CustomerLastNameCell.XPath.Value ==
        "/ns1:Customer/ns1:LastName")
    {
        this.CustomerLastNameCell.XPath.Clear();
        MessageBox.Show("Removed mathing XPath.");
    }

    if (this.CustomerLastNameCell.XPath.Value == null)
    {
        MessageBox.Show("The XmlMappedRange has no XPath.");
    }
    else
    {
        MessageBox.Show("The XPath of the XmlMappedRange is " +
            this.CustomerLastNameCell.XPath.Value);
    }
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

XmlMappedRange Rozhraní

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