ActiveReports 8
CharacterSpacing Property
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Label Class : CharacterSpacing Property

Glossary Item Box

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

Syntax

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

Remarks

The integrity of character spacing cannot be guaranteed to correctly duplicate your settings when exporting reports in XLS, RTF, and TEXT formats.

Example

C#Copy Code
private void detail1_Format(object sender, EventArgs e)  
{  
   this.label1.MultiLine = true;  
   this.label1.CharacterSpacing = 2;  
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.label1.MultiLine = True
   Me.label1.CharacterSpacing = 2
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