Version

InitializeFrom Method

This method is called after a clone operation to allow derived classes the ability to copy state over to the cloned activity
Syntax
'Declaration
 
Protected Overridable Sub InitializeFrom( _
   ByVal source As ActivityBase _
) 
protected virtual void InitializeFrom( 
   ActivityBase source
)

Parameters

source
The source activity.
Remarks

Note: the base class implemenation does nothing. When this method is called the base state of the cloned activity has already been initialized.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also