XmlMappedRange.XPath الخاصية
الحصول Microsoft.Office.Interop.Excel.XPathالذي يمثل XPath للعنصر الذي تم تعيينه إلى XmlMappedRangeعنصر تحكم.
مساحة الاسم: Microsoft.Office.Tools.Excel
التجميع: Microsoft.Office.Tools.Excel (في Microsoft.Office.Tools.Excel.dll)
بناء الجملة
'إقرار
ReadOnly Property XPath As XPath
Get
XPath XPath { get; }
قيمة الخاصية
النوع: Microsoft.Office.Interop.Excel.XPath
Microsoft.Office.Interop.Excel.XPathالذي يمثل XPath للعنصر الذي تم تعيينه إلى XmlMappedRangeعنصر تحكم.
أمثلة
يستخدم المثال التالي رمز XPathخاصية XPath لإزالة XmlMappedRangeإذا XPath هو "/ns1:العميل/ns1:LastName". مثال ثم يعرض XPath الحالي من XmlMappedRange. وهذا تعليمات برمجية بفرض أن ورقة عمل الحالي تحتوي على XmlMappedRangeباسم 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);
}
}
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.