Logical.FromText
テキスト値 "true" および "false" から論理値を作成します。
Syntax
Logical.FromText(
text as text
) as logical
Remarks
テキスト値 text
("true" または "false") から論理値を作成します。text
に別の文字列が含まれている場合は、例外がスローされます。テキスト値 text
では、大文字と小文字が区別されます。
Examples
Example #1
テキスト文字列 "true" から論理値を作成します。
Logical.FromText("true")
Result:
true
Example #2
テキスト文字列 "a" から論理値を作成します。
Logical.FromText("a")
Result:
[Expression.Error] Could not convert to a logical.
Category
Logical