ComponentFactory.Krypton.Docking.KryptonDockingManager.ContainsPage C# (CSharp) Method

ContainsPage() public method

Determines if the provided page is present in the docking hierarchy.
public ContainsPage ( KryptonPage page ) : bool
page KryptonPage Reference to page that should be found.
return bool
        public bool ContainsPage(KryptonPage page)
        {
            // Cannot find a null reference
            if (page == null)
                throw new ArgumentNullException("page");

            return ContainsPage(page.UniqueName);
        }

Same methods

KryptonDockingManager::ContainsPage ( string uniqueName ) : bool
KryptonDockingManager