ComponentFactory.Krypton.Docking.KryptonAutoHiddenProxyPage.KryptonAutoHiddenProxyPage C# (CSharp) Method

KryptonAutoHiddenProxyPage() public method

Initialize a new instance of the KryptonAutoHiddenProxyPage class.
public KryptonAutoHiddenProxyPage ( KryptonPage page ) : System
page KryptonPage
return System
        public KryptonAutoHiddenProxyPage(KryptonPage page)
        {
            if (page == null)
                throw new ArgumentNullException("page");

            // We are a proxy for this cached page reference
            _page = page;

            // Text property was updated by the base class constructor, so now we update the actual referenced class
            _page.Text = Text;
        }