fyiReporting.RdlDesign.RdlDesigner.SetMDIChildFocus C# (CSharp) Method

SetMDIChildFocus() private method

private SetMDIChildFocus ( MDIChild mc ) : void
mc MDIChild
return void
        private void SetMDIChildFocus(MDIChild mc)
        {
            // We don't want to be triggering any change events when the focus is changing
            bool bSuppress = bSuppressChange;
            bSuppressChange = true;
            mc.SetFocus();
            bSuppressChange = bSuppress;
        }
RdlDesigner