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

SetValue() public method

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