System.Windows.Automation.LegacyIAccessiblePattern.Select C# (CSharp) Method

Select() public method

public Select ( int flagsSelect ) : void
flagsSelect int
return void
        public void Select(int flagsSelect)
        {
            try
            {
                this._pattern.Select(flagsSelect);
            }
            catch (System.Runtime.InteropServices.COMException e)
            {
                Exception newEx; if (Utility.ConvertException(e, out newEx)) { throw newEx; } else { throw; }
            }
        }