Assigns (copies) properties from another RenderObject to the current object. The list of fragments (the Fragments property) is neither copied nor changed. Properties UserData, PageNumberingChange are copied by reference. The Name property is not copied.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public virtual void AssignFrom(
	RenderObject source,
	bool assignDataBinding,
	bool assignChildren,
	bool assignAnchors,
	bool assignHyperlink,
	bool assignName,
	bool assignStyle
)
Visual Basic
Public Overridable Sub AssignFrom ( _
	source As RenderObject, _
	assignDataBinding As Boolean, _
	assignChildren As Boolean, _
	assignAnchors As Boolean, _
	assignHyperlink As Boolean, _
	assignName As Boolean, _
	assignStyle As Boolean _
)

Parameters

source
Type: C1.C1Preview..::..RenderObject
The source object to copy properties from.
assignDataBinding
Type: System..::..Boolean
Indicates whether the DataBinding property should be copied.
assignChildren
Type: System..::..Boolean
Indicates whether the elements of the Children collection should be copied.
assignAnchors
Type: System..::..Boolean
Indicates whether the elements of the Anchors collection should be copied.
assignHyperlink
Type: System..::..Boolean
Indicates whether the Hyperlink property should be copied.
assignName
Type: System..::..Boolean
Indicates whether the Name property should be copied.
assignStyle
Type: System..::..Boolean
Indicates whether the Style()()()() property should be copied.

See Also