Property Value
Boolean. True if the check box is in the checked state; otherwise, False. The default value is False.
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