ActiveReports 9
Alignment Property (TextBox)
Example 

Gets or sets the alignment of text within the bounds of the control.
Syntax
'Declaration
 
Public Property Alignment As TextAlignment
public TextAlignment Alignment {get; set;}

Property Value

TextAlignment enumeration. The default value is TextAlignment.Left.
Remarks
The Justify text alignment option is not supported in edit mode. The text alignment automatically changes from Justify to Left (default value) when the control is in edit mode, and then back to Justify after exiting edit mode.
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.textBox1.Alignment = TextAlignment.Center;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.TextBox1.Alignment = TextAlignment.Center
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

TextBox Class
TextBox Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum