ActiveReports 8
LineSpacing Property
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > TextBox Class : LineSpacing Property

Glossary Item Box

Gets or sets the spacing in points between the lines of text within the textbox.

Syntax

Visual Basic (Declaration) 
Public Property LineSpacing As System.Single
C# 
public System.float LineSpacing {get; set;}

Example

C#Copy Code
private void detail_Format(object sender, EventArgs e)
{
   this.textBox1.CanGrow = True;
   this.textBox1.MultiLine = True;
   this.textBox1.LineSpacing = 5;
}
Visual BasicCopy Code
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

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