/// <summary>
 /// Write back all values to the underlying OptionHandler
 /// </summary>
 /// <remarks>
 /// Calls <see cref="IModelView.CommitValues"/>.
 /// </remarks>
 public virtual void CommitValues()
 {
     if (view != null)
     {
         view.CommitValues();
     }
 }