IdeaBlade DevForce 2010 Help Reference
Recomposed Event
See Also  Send Feedback
IdeaBlade.Core Assembly > IdeaBlade.Core.Composition Namespace > CompositionHost Class : Recomposed Event



Raised when the composition container is modified after initialization.

Syntax

Visual Basic (Declaration) 
Public Event Recomposed As EventHandler(Of RecomposedEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As CompositionHost
Dim handler As EventHandler(Of RecomposedEventArgs)
 
AddHandler instance.Recomposed, handler
C# 
public event EventHandler<RecomposedEventArgs> Recomposed
C++/CLI 
public:
event EventHandler<RecomposedEventArgs^>^ Recomposed

Event Data

The event handler receives an argument of type RecomposedEventArgs containing data related to this event. The following RecomposedEventArgs properties provide information specific to this event.

PropertyDescription
Assembly The assembly causing the recomposition.
AssemblyLoaded Returns true if an assembly download caused the recomposition.
HasError Returns true if the recomposition was not performed due to a failure.
ShouldRecompose  

Remarks

This event is used internally by DevForce to handle recomposition after dynamic content is added to the container, but your application can also listen for Recomposed events.

Raised when dynamic content is added via one of the Add(Uri) methods, and also after a Refresh.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2013 All Rights Reserved.