ACAT.Lib.Extension.AppAgents.Outlook.OutlookAgentBase.createEditControlTextInterface C# (CSharp) 메소드

createEditControlTextInterface() 보호된 메소드

Creates an edit control text agent to manipulate text in the target text control that's currently active. the 'handled' param is set to true if it was handled successfully.
protected createEditControlTextInterface ( IntPtr handle, AutomationElement focusedElement, bool &handled ) : ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
handle System.IntPtr handle to the active window
focusedElement System.Windows.Automation.AutomationElement the active text control
handled bool true if handled
리턴 ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
        protected override TextControlAgentBase createEditControlTextInterface(
                                                                            IntPtr handle,
                                                                            AutomationElement focusedElement,
                                                                            ref bool handled)
        {
            Log.Debug();

            return new OutlookAgentTextInterface(handle, focusedElement, ref handled);
        }