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

In This Topic
    LineSpacing Property (TextBox)
    In This Topic
    Gets or sets the spacing in points between the lines of text within the textbox.
    Syntax
    'Declaration
     
    Public Property LineSpacing As Single
    public float LineSpacing {get; set;}
    Example
    private void detail_Format(object sender, EventArgs e)
    {
       this.textBox1.CanGrow = True;
       this.textBox1.MultiLine = True;
       this.textBox1.LineSpacing = 5;
    }
    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.LineSpacing = 5
    End Sub
    See Also