ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / TextBox Class / CharacterSpacing Property
Example

In This Topic
    CharacterSpacing Property (TextBox)
    In This Topic
    Gets or sets the distance in points between individual characters in the textbox control.
    Syntax
    'Declaration
     
    Public Property CharacterSpacing As Single
    public float CharacterSpacing {get; set;}
    Remarks
    The integrity of character spacing cannot be guaranteed to correctly duplicate your settings when exporting reports in XLS, RTF, and TEXT formats.
    Example
    private void detail_Format(object sender, EventArgs e) 
    { 
       this.textBox1.CanGrow = true; 
       this.textBox1.MultiLine = true; 
       this.textBox1.CharacterSpacing = 2; 
    }
    Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
       Me.TextBox1.CanGrow = True
       Me.TextBox1.MultiLine = True
       Me.TextBox1.CharacterSpacing = 2
    End Sub
    See Also