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

SetValue() public method

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