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

ShowPage() public method

Show all display elements of the provided page.
public ShowPage ( string uniqueName ) : void
uniqueName string Unique name of the page that should be shown.
return void
        public void ShowPage(string uniqueName)
        {
            // Cannot show a null reference
            if (uniqueName == null)
                throw new ArgumentNullException("uniqueName");

            ShowPages(new string[] { uniqueName });
        }

Same methods

KryptonDockingWorkspace::ShowPage ( KryptonPage page ) : void