What I'm referring to is, for example, how you can do:
Range().Select
Where "Range()" is the function, and "Select" is the method.
For example, if I had a function that I wanted to take three doubles that represent the side lengths of a triangle, and spit out the largest angle in either radians of degrees.
Public Function getAngle(a as Double, b as Double, c as Double)
.degrees = 'some equation to determine degrees as a double
.rads = 'some equation to determine radians as a string
End Function
Therefore, you would get the following results:
getAngle(3, 4, 5).degrees : 90.0
getAngle(3, 4, 5).rads : "0.5π"