ActiveReports3 Request technical support
LineSpacing Property
See Also  Example


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

Syntax

Visual Basic (Declaration) 
Public Property LineSpacing As Single
Visual Basic (Usage)Copy Code
Dim instance As Label
Dim value As Single
 
instance.LineSpacing = value
 
value = instance.LineSpacing
C# 
public float LineSpacing {get; set;}

Example

C#Copy Code
private void detail_Format(object sender, EventArgs e)  
{  
  
this.lblInfo.MultiLine = true;  
  
this.lblInfo.LineSpacing = 2;
}

See Also