Poll group ( using checkbox ) as form field.
Allow user to place a group of checkbox as unique field into form.
Choices must be added to field before adding field into a form object.
Example
var poll : FvCheckPollField = new FvCheckPollField( "Your hobbies" ); poll.addChoice( "basket-ball" ); poll.addChoice( "football" ); poll.addChoice( "actionscript" ); poll.addChoice( "nothing...too tired" );
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.