XMLNode.ChildNodeSuggestions Property (2007 System)
Gets an XMLChildNodeSuggestions collection that represents the elements that may be valid children of the current XMLNode control.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property ChildNodeSuggestions As XMLChildNodeSuggestions
'Usage
Dim instance As XMLNode
Dim value As XMLChildNodeSuggestions
value = instance.ChildNodeSuggestions
[BrowsableAttribute(false)]
public XMLChildNodeSuggestions ChildNodeSuggestions { get; }
[BrowsableAttribute(false)]
public:
property XMLChildNodeSuggestions^ ChildNodeSuggestions {
XMLChildNodeSuggestions^ get ();
}
public function get ChildNodeSuggestions () : XMLChildNodeSuggestions
Property Value
Type: XMLChildNodeSuggestions
An XMLChildNodeSuggestions collection that represents the elements that may be valid children of the current XMLNode control.
Remarks
Each XMLChildNodeSuggestion in an XMLChildNodeSuggestions collection is an item in the list of allowed XML elements at the bottom of the XML Structure task pane.
Examples
The following code example uses the ChildNodeSuggestions property to add all of the child elements of an XMLNode. This example assumes that the current document contains an XMLNode named CustomerNode.
Private Sub AddChildNodesFromSuggestions()
Dim suggestion1 As Word.XMLChildNodeSuggestion
For Each suggestion1 In Me.CustomerNode.ChildNodeSuggestions
suggestion1.Insert()
Next suggestion1
End Sub
private void AddChildNodesFromSuggestions()
{
foreach (Word.XMLChildNodeSuggestion suggestion1 in
this.CustomerNode.ChildNodeSuggestions)
{
suggestion1.Insert(ref missing);
}
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.