ACAT.Extensions.Default.FunctionalAgents.SwitchWindowsAgent.SwitchWindowsAgent.createEditControlTextInterface C# (CSharp) Метод

createEditControlTextInterface() защищенный Метод

Creates and returns the text control interface for the agent
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?
Результат ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
        protected override TextControlAgentBase createEditControlTextInterface(
                                                                        IntPtr handle,
                                                                        AutomationElement focusedElement,
                                                                        ref bool handled)
        {
            return new SwitchWindowsTextControlAgent(handle, focusedElement, ref handled);
        }