I don't think so.
Say your field is getting a color from the user.
In your form definition use something like fields[color] such as NAME='fields[color]'
then, in your php code you can assign it like:
$objname->value = $fields[color];
You should of course check $fields[color] for a valid value first.
Thats how I'd do it anyways. 🙂