GrapeCity.ActiveReports.v9 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > CheckBox Class : Checked Property |
'Declaration Public Property Checked As System.Boolean
public System.bool Checked {get; set;}
Boolean. True if the check box is in the checked state; otherwise, False. The default value is False.
private void detail_Format(object sender, System.EventArgs eArgs) { this.checkBox1.Checked = true; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.CheckBox1.Checked = True End Sub