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

Glossary Item Box

Gets or sets the text of the label to be printed.

Syntax

Visual Basic (Declaration) 
Public Property Text As System.String
C# 
public System.string Text {get; set;}

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.label1.Text = "Label";
}
Visual BasicCopy Code
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.Label1.Text = "Label"
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