Expression.Constant
Gibt die M-Quellcodedarstellung eines konstanten Werts zurück.
Syntax
Expression.Constant(
value as any
) as text
Remarks
Gibt die M-Quellcodedarstellung eines konstanten Werts zurück.
Examples
Example #1
Hiermit wird die M-Quellcodedarstellung eines Zahlenwerts abgerufen.
Expression.Constant(123)
Result:
"123"
Example #2
Hiermit wird die M-Quellcodedarstellung eines Datumswerts abgerufen.
Expression.Constant(#date(2035, 01, 02))
Result:
"#date(2035, 1, 2)"
Example #3
Hiermit wird die M-Quellcodedarstellung eines Textwerts abgerufen.
Expression.Constant("abc")
Result:
"""abc"""
Category
Expression