GustFront (2.1.1) | 2013-05-05 22:09 |
MortalRoar (2.1.1) | 2014-03-05 22:16 |
RVIILib (2.1.1) | 2013-05-05 22:10 |
StdAreaEngine (2.1.1) | 2013-05-05 22:10 |
StdUtilLib (2.1.1) | 2013-05-05 22:11 |
StdWindow (2.1.1) | 2013-05-05 22:11 |
条件分岐します。
If condition Then statements
If condition Then statements1 Else statements2
If condition Then statements End If
If condition Then statements1 Else statements2 End If
If condition1 Then statements1 ElseIf condition2 Then statements2 ElseIf condition3 Then statements3 End If
If condition1 Then statements1 ElseIf condition2 Then statements2 ElseIf condition3 Then statements3 Else statements End If
ブール値、または結果がブール値になる式
実行する式
1 と 3 の形式では、condition が True と評価された場合、statements が実行されます。
2 と 4 の形式では、condition が True と評価された場合は statements1 が、False と評価された場合は statements2 が実行されます。
5 と 6 の形式では、上から順に condition が評価されていって、True になった場所の statements が実行されます。一つも True にならなければ、Else があれば Else の所の statements が実行されます。
[PageInfo]
LastUpdate: 2013-04-24 22:25:10, ModifiedBy: kento_kaimoku
[Permissions]
view:all, edit:members, delete/config:admins