ComponentOne FinancialChart for WPF
ItemCleared Event



C1.WPF Namespace > C1HierarchicalPresenter Class : ItemCleared Event
Occurs when a C1HierarchicalPresenter child item is cleared. (ClearContainerForItemOverride was invoked).
Syntax
'Declaration
 
Public Event ItemCleared As EventHandler(Of ItemPreparedEventArgs)
'Usage
 
Dim instance As C1HierarchicalPresenter
Dim handler As EventHandler(Of ItemPreparedEventArgs)
 
AddHandler instance.ItemCleared, handler
public event EventHandler<ItemPreparedEventArgs> ItemCleared
public:
event EventHandler<ItemPreparedEventArgs^>^ ItemCleared
Event Data

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

PropertyDescription
The element used to display the specified item.  
The item to display.  
See Also