[This is preliminary documentation and is subject to change.]

Copies and changes specified element to another path.

Namespace:  Phoenix.Configuration
Assembly:  PhoenixShared (in PhoenixShared.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public virtual void CopyElement(
	Object[] sourceElement,
	Object[] targetPath,
	params AttributeInfo[] attributes
)
Public Overridable Sub CopyElement ( _
	sourceElement As Object(), _
	targetPath As Object(), _
	ParamArray attributes As AttributeInfo() _
)
public:
virtual void CopyElement(
	array<Object^>^ sourceElement, 
	array<Object^>^ targetPath, 
	... array<AttributeInfo>^ attributes
)

Parameters

sourceElement
array< Object >[]()[]
Source element.
targetPath
array< Object >[]()[]
Target path. New element will be added as child to this element.
attributes
array< AttributeInfo >[]()[]
New element attributes.

Implements

ISettings..::.CopyElement(array<Object>[]()[], array<Object>[]()[], array<AttributeInfo>[]()[])

See Also