Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
guides:objects:classes [2025-03-31 17:28] – created geek | guides:objects:classes [2025-03-31 19:40] (current) – [Functions as Objects] Increase detail on function variable assignment example geek | ||
---|---|---|---|
Line 202: | Line 202: | ||
- | ===== Function | + | ===== Functions as Objects ===== |
In AutoHotkey v1, there were several global collections of names that were kept separate. There was a collection of command names, a collection of label names, a collection of function names, and a collection of variable names. AutoHotkey v2 has mostly merged these collections, | In AutoHotkey v1, there were several global collections of names that were kept separate. There was a collection of command names, a collection of label names, a collection of function names, and a collection of variable names. AutoHotkey v2 has mostly merged these collections, | ||
Line 215: | Line 215: | ||
} | } | ||
+ | MyVar := MyFunction ; Put MyFunction into a different variable | ||
+ | |||
+ | ; MsgBox is an Object and a Function | ||
MsgBox IsObject(MsgBox) ", " Type(MsgBox) | MsgBox IsObject(MsgBox) ", " Type(MsgBox) | ||
+ | |||
+ | ; MyFunction is an Object and a Function | ||
MsgBox IsObject(MyFunction) ", " Type(MyFunction) | MsgBox IsObject(MyFunction) ", " Type(MyFunction) | ||
- | MyVar := MyFunction | + | ; MyVar, which contains |
- | MyVar() ; Call the function | + | MsgBox IsObject(MyVar) ", " Type(MyVar) |
+ | |||
+ | ; We can call the function inside MyVar easily | ||
+ | MyVar() | ||
</ | </ | ||