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

createMSWordTextInterface() protected method

Creates the text control interface for MS Word
protected createMSWordTextInterface ( ) : void
return void
        protected void createMSWordTextInterface()
        {
            if (_textInterface == null)
            {
                _textInterface = new MSWordTextControlAgent();
                setTextInterface(_textInterface);
                _textInterface.EvtTextChanged += _textInterface_EvtTextChanged;
            }
        }