ACAT.Extensions.Default.FunctionalAgents.FileBrowserAgent.FileBrowserAgent.createEditControlTextInterface C# (CSharp) Method

createEditControlTextInterface() protected method

Returns the text control interface object
protected createEditControlTextInterface ( IntPtr handle, AutomationElement focusedElement, bool &handled ) : ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
handle System.IntPtr handle to the edit control
focusedElement System.Windows.Automation.AutomationElement automation element
handled bool was this handled?
return ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
        protected override TextControlAgentBase createEditControlTextInterface(
                                                    IntPtr handle,
                                                    AutomationElement focusedElement,
                                                    ref bool handled)
        {
            return new FileBrowserTextControlAgent(handle, focusedElement, ref handled);
        }