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

CellAppend() public method

Add a KryptonPage into an existing cell.
public CellAppend ( KryptonWorkspaceCell cell, KryptonPage page ) : void
cell KryptonWorkspaceCell Reference to existing workspace cell.
page ComponentFactory.Krypton.Navigator.KryptonPage KryptonPage instance to be added.
return void
        public void CellAppend(KryptonWorkspaceCell cell, KryptonPage page)
        {
            // Use existing array adding method to prevent duplication of code
            CellAppend(cell, new KryptonPage[] { page });
        }