ComponentFactory.Krypton.Docking.DockingElement.PropogateCellList C# (CSharp) Метод

PropogateCellList() публичный Метод

Propogates a workspace cell list request down the hierarchy of docking elements.
public PropogateCellList ( DockingPropogateCellList state, KryptonWorkspaceCellList cells ) : void
state DockingPropogateCellList Request that should result in the cells collection being modified.
cells KryptonWorkspaceCellList Cells collection for modification by the docking elements.
Результат void
        public virtual void PropogateCellList(DockingPropogateCellList state, KryptonWorkspaceCellList cells)
        {
            // Propogate the action request to all the child elements
            // (use reverse order so if element removes itself we still have a valid loop)
            for (int i = Count - 1; i >= 0; i--)
                this[i].PropogateCellList(state, cells);
        }