ACAT.Lib.Extension.AppAgents.MSWord.MSWordAgentBase.createMSWordTextInterface C# (CSharp) 메소드

createMSWordTextInterface() 보호된 메소드

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