ComponentFactory.Krypton.Docking.KryptonDockingWorkspace.ShowPage C# (CSharp) Method

ShowPage() public method

Show all display elements of the provided page.
public ShowPage ( KryptonPage page ) : void
page ComponentFactory.Krypton.Navigator.KryptonPage Reference to page that should be shown.
return void
        public void ShowPage(KryptonPage page)
        {
            // Cannot show a null reference
            if (page == null)
                throw new ArgumentNullException("page");

            ShowPages(new string[] { page.UniqueName });
        }

Same methods

KryptonDockingWorkspace::ShowPage ( string uniqueName ) : void