/// <summary> /// Assign the new upper bound value for this range. Current upper bound must not be open to call this method. /// </summary> /// <param name="newUpperBoundValue">The new upper bound value to assign</param> public void SetUpperBoundValue(float newUpperBoundValue) { UpperBound.SetValue(newUpperBoundValue); }
/// <summary> /// Assign the new lower bound value for this range. Current lower bound must not be open to call this method. /// </summary> /// <param name="newLowerBoundValue">The new lower bound value to assign</param> public void SetLowerBoundValue(float newLowerBoundValue) { LowerBound.SetValue(newLowerBoundValue); }