ActiveReports3 Request technical support
CharacterSpacing Property
See Also  Example


Gets or sets the distance in points between individual characters in the label control.

Syntax

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

Example

C#Copy Code
private void detail_Format(object sender, EventArgs e)  
{  
  
this.lblInfo.MultiLine = true;  
  
this.lblInfo.CharacterSpacing = 2;  
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.lblInfo.MultiLine = True
   Me.lblInfo.CharacterSpacing = 2
End Sub

Remarks

The integrity of character spacing cannot be guaranteed to correctly duplicate your settings when exporting reports in XLS, RTF, and TEXT formats. Additionally, HTML exports need to use the ActiveX viewer for character spacing to be shown correctly on the Web.

See Also