नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Function.Invoke(function as function, args as list) as any
About
Invokes the given function using the specified list of arguments and returns the result.
Example 1
Invokes Record.FieldNames with one argument [A=1,B=2]
Usage
Function.Invoke(Record.FieldNames, {[A = 1, B = 2]})
Output
{"A", "B"}