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

In This Topic
    Checked Property (CheckBox)
    In This Topic
    Gets or sets the expression that determines if the check box is checked.
    Syntax
    'Declaration
     
    Public Property Checked As ExpressionInfo
    public ExpressionInfo Checked {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object that evaluates to a System.Boolean value indicating the check box state.
    Example
    CheckBox checkBox = new CheckBox();
    checkBox.Checked = ExpressionInfo.FromString("true");
    See Also