System.Windows.Automation.SelectionItemPattern.Wrap C# (CSharp) Method

Wrap() static private method

static private Wrap ( AutomationElement el, object pattern, bool cached ) : object
el AutomationElement
pattern object
cached bool
return object
        internal static object Wrap(AutomationElement el, object pattern, bool cached)
        {
            return (pattern == null) ? null : new SelectionItemPattern(el, (UIAutomationClient.IUIAutomationSelectionItemPattern)pattern, cached);
        }