ACAT.Lib.Extension.AppAgents.Notepad.NotepadAgentBase.createEditControlTextInterface C# (CSharp) Méthode

createEditControlTextInterface() protected méthode

Creates the text control agent for notepad
protected createEditControlTextInterface ( IntPtr handle, AutomationElement focusedElement, bool &handled ) : ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
handle System.IntPtr Handle to the notepad window
focusedElement System.Windows.Automation.AutomationElement automation element for the notepad text control
handled bool set to true if handled
Résultat ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
        protected override TextControlAgentBase createEditControlTextInterface(IntPtr handle,
                                                                                AutomationElement focusedElement,
                                                                                ref bool handled)
        {
            return new NotepadTextControlAgent(handle, focusedElement, ref handled);
        }