Value.ReplaceType
Thay thế loại của giá trị.
Syntax
Value.ReplaceType(
value as any,
type as type
) as any
Remarks
Thay thế loại của value
bằng type
được cung cấp.
Examples
Example #1
Thay thế loại mặc định của bản ghi với loại cụ thể hơn.
Type.RecordFields(
Value.Type(
Value.ReplaceType(
[Column1 = 123],
type [Column1 = number]
)
)
)[Column1][Type]
Result:
type number
Category
Values.Types