ACAT.Lib.Extension.AppAgents.MSWord.MSWordAgentBase.disposeTextInterface C# (CSharp) Method

disposeTextInterface() private method

Disposes off the text interface
private disposeTextInterface ( ) : void
return void
        private void disposeTextInterface()
        {
            if (_textInterface != null)
            {
                _textInterface.EvtTextChanged -= _textInterface_EvtTextChanged;
                _textInterface.Dispose();
                _textInterface = null;
                setTextInterface();
            }
        }