ACAT.Lib.Extension.AppAgents.Notepad.NotepadAgentBase.getNotepadText C# (CSharp) Method

getNotepadText() private method

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