ACAT.Lib.Extension.AppAgents.Notepad.NotepadAgentBase.getNotepadText C# (CSharp) 메소드

getNotepadText() 개인적인 메소드

Returns text from the notepad window
private getNotepadText ( ) : String
리턴 String
        private String getNotepadText()
        {
            var retVal = TextControlAgent.GetText();
            return Regex.Replace(retVal, "\r\r\n", "");
        }