ActiveReports Developer 7
Value Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Label Class : Value Property

Glossary Item Box

Gets or sets the current Value of the Label control.

Syntax

Visual Basic (Declaration) 
Public Property Value As System.Object
C# 
public System.object Value {get; set;}

Property Value

Object.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.label1.Value="Title";
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Label1.Value = "Title"
End Sub

See Also