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

FindPageElement() public method

Find the docking element that contains the provided page.
public FindPageElement ( KryptonPage page ) : IDockingElement
page KryptonPage Reference to page.
return IDockingElement
        public IDockingElement FindPageElement(KryptonPage page)
        {
            // Cannot find a null reference
            if (page == null)
                throw new ArgumentNullException("page");

            return FindPageElement(page.UniqueName);
        }

Same methods

KryptonDockingManager::FindPageElement ( string uniqueName ) : IDockingElement
KryptonDockingManager