Share via


Type.FunctionRequiredParameters

구문

Type.FunctionRequiredParameters(type as type) as number  

정보

함수의 입력 type 을 호출하는 데 필요한 최소 매개 변수 수를 나타내는 숫자를 반환합니다.

예 1

함수 (x as number, optional y as text)에 필요한 매개 변수 수를 찾습니다.

사용법

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

출력

1