Creates and attaches a GwxDynamic derived object of the specified type for each of the specified GwxDependencyObjects.

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

Syntax

C#
public GwxDynamic[] CreateDynamics(
	Type dynamicType,
	GwxDependencyObject[] targetObjects
)
Visual Basic
Public Function CreateDynamics ( _
	dynamicType As Type, _
	targetObjects As GwxDependencyObject() _
) As GwxDynamic()
JScript
public function CreateDynamics(
	dynamicType : Type, 
	targetObjects : GwxDependencyObject[]
) : GwxDynamic[]

Parameters

dynamicType
Type: System..::..Type
The GwxDynamic derived type to create.
targetObjects
Type: array<Ico.Gwx..::..GwxDependencyObject>[]()[][]
The list of GwxDependencyObjects with which to associate the new GwxDynamics.

Return Value

A list of the newly created GwxDynamic objects, or null if unable to create the new dynamics.

See Also