ManagedCheckBox¶
Managed CheckBox.
UI element class: System.Windows.Forms.CheckBox
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: ManagedObjectCheckableBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| Checked | Check state of the button. | GetChecked | SetChecked |
Action Summary¶
| Action | Description |
|---|---|
| DoSetCheck | Sets check state of the object. |
Property Detail¶
Checked¶
Check state of the button. 'true' if the button is checked, 'false' otherwise.
Type: boolean
Accessors: GetChecked, SetChecked
value = SeS('SomeManagedCheckBox').GetChecked()
SeS('SomeManagedCheckBox').SetChecked(value)
Action Detail¶
DoSetCheck¶
Sets check state of the object.
SeS('SomeManagedCheckBox').DoSetCheck(bcheck)
Parameters:
| Name | Type | Description |
|---|---|---|
| bcheck | boolean | Desired check state for the item. |
Returns:
boolean: 'true' if success, 'false' otherwise.