ActiveReports 9
Checked Property (CheckBox)
Example 

Gets or sets a value indicating the state of the checkbox.
Syntax
'Declaration
 
Public Property Checked As System.Boolean
public System.bool Checked {get; set;}

Property Value

Boolean.  True if the check box is in the checked state; otherwise, False. The default value is False.

Remarks
When the value is True, the check box portion of the control displays a check mark.
Example
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CheckBox Class
CheckBox Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum