Inserts a collection of child GwxElement objects in this instance, after the specified reference child GwxElement.

Namespace: Ico.Gwx
Assembly: GwxConfigCore (in GwxConfigCore.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public void InsertChildrenAfter(
	GwxElement[] newChildren,
	GwxElement refChild
)
Visual Basic
Public Sub InsertChildrenAfter ( _
	newChildren As GwxElement(), _
	refChild As GwxElement _
)
JScript
public function InsertChildrenAfter(
	newChildren : GwxElement[], 
	refChild : GwxElement
)

Parameters

newChildren
Type: array<Ico.Gwx..::..GwxElement>[]()[][]
The collection of GwxElement objects to insert.
refChild
Type: Ico.Gwx..::..GwxElement
The child GwxElement after which the new children will be inserted.

Remarks

If refChild is null, the new children are inserted at the end of this instance's list of children.

See Also