Loads controls into parent from passed reader

Namespace:  Greatis.FormDesigner
Assembly:  Greatis.FormDesigner.Interop (in Greatis.FormDesigner.Interop.dll)

Syntax

Visual Basic (Declaration)
Sub Load ( _
	parent As Control, _
	reader As IReader, _
	components As IComponent(), _
	ignoreParent As Boolean _
)
C#
void Load(
	Control parent,
	IReader reader,
	IComponent[] components,
	bool ignoreParent
)
Visual C++
void Load(
	Control^ parent, 
	IReader^ reader, 
	array<IComponent^>^ components, 
	bool ignoreParent
)
JavaScript
function load(parent, reader, components, ignoreParent);

Parameters

parent
Type: System.Windows.Forms..::.Control
parent for loaded controls
reader
Type: Greatis.FormDesigner..::.IReader
reader object containing the data
components
Type: array< System.ComponentModel..::.IComponent >[]()[]
array of the loaded components
ignoreParent
Type: System..::.Boolean
if true, supresses loading parent properties

See Also