ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / CheckBox Class / Text Property
Example

In This Topic
    Text Property (CheckBox)
    In This Topic
    Gets or sets the printed caption of the checkbox.
    Syntax
    'Declaration
     
    Public Property Text As String
    public string Text {get; set;}

    Property Value

    String. Current caption of the checkbox.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.checkBox1.Text = "CheckBox";
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
       Me.CheckBox1.Text = "CheckBox"
    End Sub
    See Also