DialogEx.SetRadioValue

DialogEx.SetRadioValue (

string Value,

string GroupID = "",

number Type = RADIOGROUP_VALUE )

Description

Selects a radio button item in a group by value, object name or radio button text on the current dialog.

Tip: You can get the selected radio button on the dialog using the DialogEx.GetRadioValue action.

Parameters

Value

(string) The radio button that should be selected in the group. This value will be interpreted according to the Type parameter.

GroupID

(string) The ID of the group whose radio button you want to select. When an empty string is passed, this is the default radiobutton group of the dialog.

Type

(number) The type of value that you are specifying in the Value parameter:

CONSTANT

VALUE

DESCRIPTION

RADIOGROUP_VALUE

0

Select by radiobutton value. (Default)

RADIOGROUP_OBJECTNAME

1

Select by radiobutton object's name.

RADIOGROUP_TEXT

2

Select by radiobutton's text.

Returns

Nothing.

See also: Related Actions