ComponentFactory.Krypton.Toolkit.KryptonReadOnlyControls.AddRange C# (CSharp) Method

AddRange() public method

Adds an array of control objects to the collection.
public AddRange ( Control controls ) : void
controls System.Windows.Forms.Control An array of Control objects to add to the collection.
return void
        public override void AddRange(Control[] controls)
        {
            if (AllowRemoveInternal)
                base.AddRange(controls);
            else
                throw new NotSupportedException("ReadOnly controls collection");
        }