ComponentOne RichTextBox for WPF and Silverlight
ChildrenChanged Event (C1TextElement)

C1.WPF.RichTextBox.Documents Namespace > C1TextElement Class : ChildrenChanged Event
Fires when the children collection of this C1TextElement changes.
Syntax
'Declaration
 
Public Event ChildrenChanged As System.Collections.Specialized.NotifyCollectionChangedEventHandler
public event System.Collections.Specialized.NotifyCollectionChangedEventHandler ChildrenChanged
Event Data

The event handler receives an argument of type System.Collections.Specialized.NotifyCollectionChangedEventArgs containing data related to this event. The following NotifyCollectionChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the description of the action that caused the event.  
Gets the items affected by an action.  
Gets the index at which the change occurred.  
Gets the item affected by a System.Collections.Specialized.NotifyCollectionChangedAction.Replace or System.Collections.Specialized.NotifyCollectionChangedAction.Remove action.  
Gets the index at which the change occurred for a System.Collections.Specialized.NotifyCollectionChangedAction.Replace or System.Collections.Specialized.NotifyCollectionChangedAction.Remove action.  
See Also