ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / CheckBox Class / Text Property
Example

In This Topic
    Text Property (CheckBox)
    In This Topic
    Gets or sets the text associated with the check box.
    Syntax
    'Declaration
     
    Public Property Text As ExpressionInfo
    public ExpressionInfo Text {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object that evaluates to the text displayed next to the check box.
    Example
    CheckBox checkBox = new CheckBox();
    checkBox.Text = "Agree to Terms and Conditions";
    See Also