MW211 EXIT

devlog
ExcelVBA/抜ける
2013年09月03日
Exit何とかの命令は以下のようなものがある。
┌──────────────────────────────────────┐
│Sub 関数()                                                                  │
│   Exit Sub                                                                 │
│End Sub                                                                     │
├──────────────────────────────────────┤
│Function 関数()                                                             │
│    Exit Function                                                           │
│End Function                                                                │
├──────────────────────────────────────┤
│For i = 1 To 3                                                              │
│    Exit For                                                                │
│Next x                                                                      │
├──────────────────────────────────────┤
│Do                                                                          │
│    Exit Do                                                                 │
│Loop                                                                        │
├──────────────────────────────────────┤
│Exit Property                                                               │
└──────────────────────────────────────┘
分類:ExcelVBA