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

In This Topic
    LineSpacing Property (Label)
    In This Topic
    Gets or sets the spacing in points between the lines of text within the label control.
    Syntax
    'Declaration
     
    Public Property LineSpacing As Single
    public float LineSpacing {get; set;}
    Example
    private void detail_Format(object sender, EventArgs e)  
    {  
       this.lblInfo.MultiLine = true;  
       this.lblInfo.LineSpacing = 2; 
    }
    Private Sub detail_Format(sender As Object, e As EventArgs)
    	Me.lblInfo.MultiLine = True
    	Me.lblInfo.LineSpacing = 2
    End Sub
    See Also