ActiveReports 9
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CheckBox Class
CheckBox Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum