ComponentFactory.Krypton.Toolkit.ViewLeaf.Insert C# (CSharp) Method

Insert() public method

Inserts a view to the collection at the specified index.
public Insert ( int index, ViewBase item ) : void
index int Insert index.
item ViewBase ViewBase reference.
return void
        public override void Insert(int index, ViewBase item)
        {
            // Can never insert a view to a leaf view
            throw new NotSupportedException("Cannot insert to a leaf view.");
        }