ComponentFactory.Krypton.Docking.KryptonDockingDockspace.PropogateIntState C# (CSharp) Method

PropogateIntState() public method

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
return void
        public override void PropogateIntState(DockingPropogateIntState state, ref int value)
        {
            // User our value if it is the largest encountered so far
            value = Math.Max(value, Order);
        }