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

FindPageLocation() public method

Find the docking location of the provided page.
public FindPageLocation ( KryptonPage page ) : DockingLocation
page KryptonPage Reference to page.
return DockingLocation
        public DockingLocation FindPageLocation(KryptonPage page)
        {
            // Cannot find a null reference
            if (page == null)
                throw new ArgumentNullException("page");

            return FindPageLocation(page.UniqueName);
        }

Same methods

KryptonDockingManager::FindPageLocation ( string uniqueName ) : DockingLocation
KryptonDockingManager