DocumentBase.ChildNodeSuggestions 属性

获取一个 XMLChildNodeSuggestions 集合,该集合表示 DocumentBase(返回所有附加架构的根元素)或 XMLNode 对象(返回指定元素的子元素)的允许元素的列表。

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

语法

声明
Public ReadOnly Property ChildNodeSuggestions As XMLChildNodeSuggestions
public XMLChildNodeSuggestions ChildNodeSuggestions { get; }

属性值

类型:Microsoft.Office.Interop.Word.XMLChildNodeSuggestions
一个 XMLChildNodeSuggestions 集合。

备注

XMLChildNodeSuggestions 集合中的每个 XMLChildNodeSuggestion 都是可能允许的 XML 元素列表中的一项,该列表位于**“XML 结构”**任务窗格的底部。

示例

对于附加到文档的架构的每个根元素,下面的代码示例使用 ChildNodeSuggestions 属性向该文档添加一个 XML 元素。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

    Private Sub DocumentChildNodeSuggestions()
        Dim suggestion As Word.XMLChildNodeSuggestion
        For Each suggestion In Me.ChildNodeSuggestions
            suggestion.Insert()
        Next suggestion
    End Sub

private void DocumentChildNodeSuggestions()
{
    foreach (Word.XMLChildNodeSuggestion suggestion in
        this.ChildNodeSuggestions)
    {
        suggestion.Insert(ref missing);
    }
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间