ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1HierarchicalPresenter Class / ItemPrepared Event



In This Topic
    ItemPrepared Event
    In This Topic
    Occurs when a C1HierarchicalPresenter child item is prepared (PrepareContainerForItemOverride was invoked).
    Syntax
    'Declaration
     
    
    Public Event ItemPrepared As EventHandler(Of ItemPreparedEventArgs)
    'Usage
     
    
    Dim instance As C1HierarchicalPresenter
    Dim handler As EventHandler(Of ItemPreparedEventArgs)
     
    AddHandler instance.ItemPrepared, handler
    public event EventHandler<ItemPreparedEventArgs> ItemPrepared
    public:
    event EventHandler<ItemPreparedEventArgs^>^ ItemPrepared
    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