Wählt einen RadioButton aus.
#Include <FF.au3>
_FFFormRadioButton($vRadioButton[, $iRadioButtonIndex = 0[, $sRadioButtonMode = "index"[, $vForm = 0[, $sFormMode = "index"]]]])
Parameters
$vRadioButton | Name, ID oder Value des Radio Buttons. | ||||||||||
$iRadioButtonIndex | Optional: Index der Check-Box (0-n), falls der Name mehrfach vorhanden ist. 0 = (Default) |
||||||||||
$sRadioButtonMode |
| ||||||||||
$vForm | Optional: Index (0-n), Name oder ID des Formulars. 0 = (Default) |
||||||||||
$sFormMode |
|
Return Value
Success: | Returns 1 |
Failure: | Returns 0 and sets @ERROR |
@ERROR: |
0 ($_FF_ERROR_Success) 2 ($_FF_ERROR_SocketError) 4 ($_FF_ERROR_InvalidValue) |
Remarks
Bei allen Parametern kann auch das SchlüsselwortDefault
angegeben werden.
Related
_FFFormCheckBox, _FFFormOptionSelect, _FFFormReset, _FFFormSubmit
Example
#Include <FF.au3> _FFStart("http://ff-au3-example.thorsten-willert.de/") If _FFIsConnected() Then _FFFormRadioButton(1, 0, "index") Sleep(3000) _FFFormRadioButton("size", 2, "name", "Pizza", "name") EndIf