Бележка
Достъпът до тази страница изисква удостоверяване. Можете да опитате да влезете или да промените директориите.
Достъпът до тази страница изисква удостоверяване. Можете да опитате да промените директориите.
Syntax
Logical.FromText(text as nullable text) as nullable logical
About
Creates a logical value from the text value text, either "true" or "false". If text contains a different string, an error is raised. The text value text is case insensitive.
Example 1
Create a logical value from the text string "true".
Usage
Logical.FromText("true")
Output
true
Example 2
Create a logical value from the text string "a".
Usage
Logical.FromText("a")
Output
[Expression.Error] Could not convert to a logical.