ACAT.Lib.Extension.AppAgents.MSWord.MSWordAgentBase.disposeTextInterface C# (CSharp) Méthode

disposeTextInterface() private méthode

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