Inserts a child GwxElement 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 InsertChildAfter(
	GwxElement newChild,
	GwxElement refChild
)
Visual Basic
Public Sub InsertChildAfter ( _
	newChild As GwxElement, _
	refChild As GwxElement _
)
JScript
public function InsertChildAfter(
	newChild : GwxElement, 
	refChild : GwxElement
)

Parameters

newChild
Type: Ico.Gwx..::..GwxElement
The GwxElement to insert.
refChild
Type: Ico.Gwx..::..GwxElement
The child GwxElement after which the new child will be inserted.

Remarks

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

See Also