ARCed.UI.DockPanel.IsParentFormValid C# (CSharp) Method

IsParentFormValid() private method

private IsParentFormValid ( ) : bool
return bool
        private bool IsParentFormValid()
        {
            if (this.DocumentStyle == DocumentStyle.DockingSdi || this.DocumentStyle == DocumentStyle.DockingWindow)
                return true;

            if (!this.MdiClientExists)
                this.GetMdiClientController().RenewMdiClient();

            return (this.MdiClientExists);
        }