Value.Type
Returnează tipul valorii date.
Syntax
Value.Type(
value as any
) as type
Remarks
Returnează tipul valorii date.
value: Valoarea al cărei tip este returnat.
Examples
Example #1
Returnați tipul numărului specificat.
Value.Type(243.448)
Result:
type number
Example #2
Returnați tipul datei specificate.
Value.Type(#date(2010, 12, 31))
Result:
type date
Example #3
Returnați tipul înregistrării specificate.
Value.Type([a = 1, b = 2])
Result:
type record
Category
Values