CK.Keyboard.LayoutCollection.OnAvailableModeRemoved C# (CSharp) Method

OnAvailableModeRemoved() private method

private OnAvailableModeRemoved ( ICKReadOnlyList modes ) : void
modes ICKReadOnlyList
return void
        internal void OnAvailableModeRemoved( ICKReadOnlyList<IKeyboardMode> modes )
        {
            if( _layouts == null ) _defaultLayout.OnAvailableModeRemoved( modes );
            else
            {
                foreach( Layout l in _layouts.Values )
                {
                    l.OnAvailableModeRemoved( modes );
                }
            }
        }