Initializes a component with information about the system and symbol it is associated with.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
void Initialize(
	SystemData systemData,
	Symbol symbol
)
Visual Basic (Declaration)
Sub Initialize ( _
	systemData As SystemData, _
	symbol As Symbol _
)
Visual C++
void Initialize(
	SystemData^ systemData, 
	Symbol^ symbol
)

Parameters

systemData
Type: RightEdge.Common..::.SystemData
The SystemData object for the current system
symbol
Type: RightEdge.Common..::.Symbol
The symbol associated with this object

Remarks

If a component implements the ISystemAccess Interface, this method will be called to pass a reference to the SystemData class and the Symbol associated with this object. The component will usually save these values for later reference.

See Also