Method RaiseComponentInserted
RaiseComponentInserted(int, DisposableObject)
Raises an event or performs an action to indicate that a component has been inserted at the specified index.
public virtual void RaiseComponentInserted(int index, DisposableObject childElement)
Parameters
indexintThe zero-based index at which the component was inserted.
childElementDisposableObjectThe component that was inserted. Cannot be null.
Remarks
This method is typically called to notify listeners or perform additional processing when a component is added. Derived classes can override this method to provide custom behavior.