ActiveReports 8
WordWrap Property (CheckBox)
Example 

Indicates whether the text of the checkbox will be wrapped to a new line when necessary.

Syntax
'Declaration
 
Public Property WordWrap As System.Boolean
public System.bool WordWrap {get; set;}

Property Value

Boolean.  Returns True if the checkbox control wraps words; False if the checkbox text will be clipped.  The default value is True.
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.checkBox1.WordWrap = true;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.CheckBox1.WordWrap = True
End Sub
See Also

Reference

CheckBox Class
CheckBox Members

Support Forum