ActiveReports Developer 7
LineSpacing Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Label Class : LineSpacing Property

Glossary Item Box

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

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.lblInfo.MultiLine = true;  
   this.lblInfo.LineSpacing = 2; 
}
VB.NETCopy Code
Private Sub detail_Format(sender As Object, e As EventArgs)
	Me.lblInfo.MultiLine = True
	Me.lblInfo.LineSpacing = 2
End Sub

See Also