Boolean.ToString
From Xojo Documentation
Method
Returns the value as a string.
Notes
If the value is True, the String "True" is returned, otherwise the String "False" is returned.
Sample Code
This example displays "True" or "False" in the MessageBox depending on whether the property is set to True or False.
MessageBox(Window1.HasCloseBox.ToString)
See Also
FromString shared method.