System.Windows.Automation.TableItemPattern.TableItemPattern C# (CSharp) Method

TableItemPattern() private method

private TableItemPattern ( AutomationElement el, UIAutomationClient tablePattern, UIAutomationClient gridPattern, bool cached ) : System
el AutomationElement
tablePattern UIAutomationClient
gridPattern UIAutomationClient
cached bool
return System
        private TableItemPattern(AutomationElement el, UIAutomationClient.IUIAutomationTableItemPattern tablePattern, UIAutomationClient.IUIAutomationGridItemPattern gridPattern, bool cached)
            : base(el, gridPattern, cached)
        {
            Debug.Assert(tablePattern != null);
            this._pattern = tablePattern;
        }
TableItemPattern