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

IsPageShowing() public method

Determines if the provided page is present and showing.
public IsPageShowing ( KryptonPage page ) : bool
page KryptonPage Reference to page.
return bool
        public bool IsPageShowing(KryptonPage page)
        {
            // Cannot search for a null reference
            if (page == null)
                throw new ArgumentNullException("page");

            return IsPageShowing(page.UniqueName);
        }

Same methods

KryptonDockingManager::IsPageShowing ( string uniqueName ) : bool
KryptonDockingManager