नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Type.ForFunction(signature as record, min as number) as type
About
Creates a function type from signature, a record of ReturnType and Parameters, and min, the minimum number of arguments required to invoke the function.
Example 1
Creates the type for a function that takes a number parameter named X and returns a number.
Usage
Type.ForFunction([ReturnType = type number, Parameters = [X = type number]], 1)
Output
type function (X as number) as number