Keyword Reference |
首页 后退 前进 |
Select...Case...EndSelect 条件运行语句.
Select Case <表达式 1> 语句 ... [Case <表达式 2> 语句 2 ...] [Case <表达式 n> 语句 n ...] [Case Else Else 语句 ...] EndSelect 参数
备注 Select 语句允许嵌套使用. 表达式可以包含布尔运算符: AND, OR, 或 NOT 以及逻辑运算符: <, <=, >, >=, =, ==, 与 <>. 根据需要可以用圆括号组合使用. 相关 If...Then, If...Else...EndIf, Switch...EndSwitch, ContinueCase 函数示例 #include <MsgBoxConstants.au3> ---------------------------------------- |