Skip to main content

Type.FunctionRequiredParameters

ส่งกลับจำนวนที่ระบุจำนวนขั้นต่ำของพารามิเตอร์ที่ต้องใช้เพื่อเรียกประเภทฟังก์ชันนั้น

Syntax

Type.FunctionRequiredParameters(
type as type
) as number

Remarks

ส่งกลับจำนวนที่ระบุจำนวนขั้นต่ำของพารามิเตอร์ที่ต้องใช้เพื่อเรียกอินพุต type ของฟังก์ชัน

Examples

Example #1

ค้นหาจำนวนพารามิเตอร์ที่ต้องการสำหรับฟังก์ชัน <code>(x as number, optional y as text)</code>

Type.FunctionRequiredParameters(type function (x as number, optional y as text) as any)

Result:

1

Category

Type