[Me]

Takes no parameters

Description:

Returns the name of the current Private Method. This is useful when you need to pass the fully qualified query name, such as Me.Output, to another Private Method.

Example:

Method myPrivateMethod()
   [New] Me [Me]
Html ("Me: " & Me) 'Me: myPrivateMethod

SetNew "Route", "`DoSomething"
UseQuery (Me & ".Output")
End Method

Method UseQuery(pQ)
[Pull] (pQ), "Route Action"

End Method