What's the difference between a function and the Get Property?
Both TestFunction and TestProperty generate the same results.
Option Explicit
Sub TestFunction()
Dim d As Long
d = MyFunction(1, 2, 3)
End Sub
Sub TestProperty()
Dim d As Long
d = MyProperty(1, 2...