ActiveReports3 Request technical support
Text Property
See Also  Example


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

Syntax

Visual Basic (Declaration) 
Public Property Text As String
Visual Basic (Usage)Copy Code
Dim instance As Label
Dim value As String
 
instance.Text = value
 
value = instance.Text
C# 
public 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

See Also