ComponentFactory.Krypton.Docking.DockingElement.PropogateDragTargets C# (CSharp) Method

PropogateDragTargets() public method

Propogates a request for drag targets down the hierarchy of docking elements.
public PropogateDragTargets ( KryptonFloatingWindow floatingWindow, PageDragEndData dragData, DragTargetList targets ) : void
floatingWindow KryptonFloatingWindow Reference to window being dragged.
dragData ComponentFactory.Krypton.Navigator.PageDragEndData Set of pages being dragged.
targets DragTargetList Collection of drag targets.
return void
        public virtual void PropogateDragTargets(KryptonFloatingWindow floatingWindow,
                                                 PageDragEndData dragData,
                                                 DragTargetList targets)
        {
            // Propogate the request to all child elements
            foreach (IDockingElement child in this)
                child.PropogateDragTargets(floatingWindow, dragData, targets);
        }