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

HidePage() public method

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

            if (uniqueName.Length > 0)
                HidePages(new string[] { uniqueName });
        }

Same methods

KryptonDockingWorkspace::HidePage ( KryptonPage page ) : void