window class : Fitted getter
Description
Returns the value that indicates whether an instance was initialized.
Syntax
instance.Fitted
Arguments
None.
Return value
Class | Description |
bool | Whether an instance was initialized. |
Sample code
1: | window instance = new window(); |
2: | bool init = instance.Fitted; |
Notes
An instance of the window class is always initialized. In other words, the getter of the window class always returns true.
Links for reference
None.