Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentes Révision précédente | |||
|
prog:lazarus:types:enum [15/09/2024 13:07] thierry [In] |
prog:lazarus:types:enum [15/09/2024 13:15] (Version actuelle) thierry [Opérateur * pour verifier plusieurs membres du Set] |
||
|---|---|---|---|
| Ligne 103: | Ligne 103: | ||
| if [csLoading,csDestroying,csDesigning]*ComponentState=[] then ... | if [csLoading,csDestroying,csDesigning]*ComponentState=[] then ... | ||
| </code> | </code> | ||
| + | |||
| + | ==== Include / Exclude ==== | ||
| + | <code pascal> | ||
| + | Include (FComponentState,csUpdating); | ||
| + | ... | ||
| + | Exclude(FComponentState,csUpdating); | ||
| + | |||
| + | </code> | ||
| + | |||