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

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

Propogates an integer state request down the hierarchy of docking elements.
public PropogateIntState ( DockingPropogateIntState state, int &value ) : void
state DockingPropogateIntState Integer state that is requested to be recovered.
value int Value discovered from matching
Результат void
        public virtual void PropogateIntState(DockingPropogateIntState state, ref int value)
        {
            // Propogate the request to all the child elements
            for (int i = Count - 1; i >= 0; i--)
                this[i].PropogateIntState(state, ref value);
        }