Poll group ( using radiobutton ) as form field.
Allow user to place a group of radiobutton as unique field into form.
Choices must be added to field before adding field into a form object.
Example
var pollRadio : FvRadioPollField = new FvRadioPollField( "Your opinion" ); pollRadio.addChoice( "bad" ); pollRadio.addChoice( "bad" ); pollRadio.addChoice( "execellent" );
public function setRowAndColumn(rows:Number, columns:Number):VoidDefines row and column value for poll choices representation.
If not defined, uses row == choices list length and column == 1.