ARCed.UI.DockPanel.IsParentFormValid C# (CSharp) 메소드

IsParentFormValid() 개인적인 메소드

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

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

            return (this.MdiClientExists);
        }