ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Label Class / Value Property
Example

In This Topic
    Value Property (Label)
    In This Topic

    Gets or sets the current Value of the Label control.

    Syntax
    'Declaration
     
    Public Property Value As Object
    public object Value {get; set;}

    Property Value

    Object.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.label1.Value="Title";
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.Label1.Value = "Title"
    End Sub
    See Also