XMLNode.PreviousSibling 属性

获取一个 Microsoft.Office.Interop.Word.XMLNode 对象,该对象表示文档中的上一个与 Microsoft.Office.Tools.Word.XMLNode 控件处于相同级别的 Microsoft.Office.Interop.Word.XMLNode 对象。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)

语法

声明
ReadOnly Property PreviousSibling As XMLNode
XMLNode PreviousSibling { get; }

属性值

类型:Microsoft.Office.Interop.Word.XMLNode
一个 Microsoft.Office.Interop.Word.XMLNode 对象,表示文档中的上一个与 Microsoft.Office.Tools.Word.XMLNode 控件处于相同级别的 Microsoft.Office.Interop.Word.XMLNode 对象。

备注

如果当前 Microsoft.Office.Interop.Word.XMLNodeMicrosoft.Office.Interop.Word.XMLNodes 集合中的第一个元素,则此属性返回 nullnull 引用(在 Visual Basic 中为 Nothing)。

示例

下面的代码示例使用 PreviousSibling 和 NextSibling 属性显示 XMLNode 控件前后的元素名称。 此示例假定当前文档包含一个名为 CustomerFirstNameNode 的 XMLNode

Private Sub DisplaySiblings()

    ' Display the previous sibling, if one exists.
    If Not (Me.CustomerFirstNameNode.PreviousSibling Is Nothing) Then
        MsgBox("The previous sibling of '" & _
            Me.CustomerFirstNameNode.BaseName & "' is  '" & _
            Me.CustomerFirstNameNode.PreviousSibling.BaseName & "'.")
    Else
        MsgBox("'" & Me.CustomerFirstNameNode.BaseName & _
            "' is the first node in its hierarchy.")
    End If

    ' Display the next sibling, if one exists.
    If Not (Me.CustomerFirstNameNode.NextSibling Is Nothing) Then

        MsgBox("The next sibling of '" & _
            Me.CustomerFirstNameNode.BaseName & "' is '" & _
            Me.CustomerFirstNameNode.NextSibling.BaseName & "'.")
    Else
        MsgBox("'" & Me.CustomerFirstNameNode.BaseName & _
            "' is the last node in its hierarchy.")
    End If
End Sub
private void DisplaySiblings()
{
    // Display the previous sibling, if one exists.
    if (this.CustomerFirstNameNode.PreviousSibling != null)
    {
        MessageBox.Show("The previous sibling of '" +
            this.CustomerFirstNameNode.BaseName + "' is  '" +
            this.CustomerFirstNameNode.PreviousSibling.BaseName +
            "'.");
    }
    else
    {
        MessageBox.Show("'" + this.CustomerFirstNameNode.BaseName +
            "' is the first node in its hierarchy.");
    }

    // Display the next sibling, if one exists.
    if (this.CustomerFirstNameNode.NextSibling != null)
    {

        MessageBox.Show("The next sibling of '" +
            this.CustomerFirstNameNode.BaseName + "' is '" +
            this.CustomerFirstNameNode.NextSibling.BaseName +
            "'.");
    }
    else
    {
        MessageBox.Show("'" + this.CustomerFirstNameNode.BaseName +
            "' is the last node in its hierarchy.");
    }
}

.NET Framework 安全性

请参见

参考

XMLNode 接口

Microsoft.Office.Tools.Word 命名空间