MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Label Class / Text Property
Example

In This Topic
Text Property (Label)
In This Topic
Gets or sets the text of the label to be printed.
Syntax
'Declaration
 
Public Property Text As String
 
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.label1.Text = "Label";
}
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.Label1.Text = "Label"
End Sub
See Also