Type.Is
Determina se un valore del primo tipo è sempre compatibile con il secondo tipo.
Syntax
Type.Is(
type1 as type,
type2 as type
) as logical
Remarks
Determina se un valore di type1
è sempre compatibile con type2
.
Examples
Example #1
Determinare se un valore di tipo number può essere considerato sempre come type any.
Type.Is(type number, type any)
Result:
true
Example #2
Determinare se un valore di tipo any può essere considerato sempre come type number.
Type.Is(type any, type number)
Result:
false
Category
Type