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

FindStorePageElement() public method

Find the docking element that contains the location specific store page for the named page.
public FindStorePageElement ( DockingLocation location, KryptonPage page ) : IDockingElement
location DockingLocation Location to be searched.
page KryptonPage Reference to page.
return IDockingElement
        public IDockingElement FindStorePageElement(DockingLocation location, KryptonPage page)
        {
            // Cannot find a null reference
            if (page == null)
                throw new ArgumentNullException("page");

            return FindStorePageElement(location, page.UniqueName);
        }

Same methods

KryptonDockingManager::FindStorePageElement ( DockingLocation location, string uniqueName ) : IDockingElement
KryptonDockingManager