ComponentFactory.Krypton.Docking.KryptonDockingSpace.CellInsert C# (CSharp) Method

CellInsert() public method

Add a KryptonPage array into an existing cell starting at the provided index.
public CellInsert ( KryptonWorkspaceCell cell, int index, KryptonPage page ) : void
cell KryptonWorkspaceCell Reference to existing workspace cell.
index int Index for inserting new pages.
page ComponentFactory.Krypton.Navigator.KryptonPage KryptonPage instance to be added.
return void
        public void CellInsert(KryptonWorkspaceCell cell, int index, KryptonPage page)
        {
            // Use existing array adding method to prevent duplication of code
            CellInsert(cell, index, new KryptonPage[] { page });
        }