Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
prog:lazarus:types:set [11/04/2020 18:59] thierry créée |
— (Version actuelle) | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== Set Of ====== | ||
- | <code delphi> | ||
- | THookedCommandFlag = ( | ||
- | hcfInit, // run before On[User]CommandProcess (outside UndoBlock / should not do execution) | ||
- | hcfPreExec, // Run before CommandProcessor (unless handled by On[User]CommandProcess) | ||
- | hcfPostExec, // Run after CommandProcessor (unless handled by On[User]CommandProcess) | ||
- | hcfFinish // Run at the very end | ||
- | ); | ||
- | THookedCommandFlags = set of THookedCommandFlag; | ||
- | |||
- | </code> | ||