Skip to content

JavaCheckBox

Java CheckBox.

UI element class: java.awt.Checkbox

Extends JavaObject

Extends SeSSimulatedObject

Behavior Pattern: JavaObjectCheckableBehavior

Property Summary

Property Description Getter Setter
Checked Check state of the button. GetChecked SetChecked
Value Value of the object. GetValue SetValue

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('SomeJavaCheckBox').GetChecked()

SeS('SomeJavaCheckBox').SetChecked(value)

Value

Value of the object.

Type: boolean

Accessors: GetValue, SetValue

value = SeS('SomeJavaCheckBox').GetValue()

SeS('SomeJavaCheckBox').SetValue(value)

Action Detail

DoSetCheck

Sets check state of the object.

SeS('SomeJavaCheckBox').DoSetCheck(bcheck)

Parameters:

Name Type Description
bcheck boolean Desired check state for the item.

Returns:

boolean: 'true' if success, 'false' otherwise.