+2  A: 

Anything you can do in Interface Builder you can do through code.

[myTextField setAutoresizingMask:(NSViewMaxXMargin | NSViewMinYMargin)];

This means that the margin between the right edge of the textView and its superview will be flexible, as will the margin between the bottom edge and its superview. Everything else is static.

Dave DeLong
Ah. Thank you. I saw those options, but misread them.
Gordon Fontenot