Skip to content

Win32RadioButton

This is generic Win32 radio button. Use DoAction to select the button.

Extends SeSSimulatedObject

Behavior Pattern: Win32CheckBox

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

SeS('SomeWin32RadioButton').SetChecked(value)

Action Detail

DoSetCheck

Sets check state of the object.

SeS('SomeWin32RadioButton').DoSetCheck(bcheck)

Parameters:

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

Returns:

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

Behavior Pattern: Win32Radio