writer class : Fitted getter
Description
Gets a value that indicates whether this instance was already initialized.
Syntax
writerInstance.Fitted
Arguments
None.
Return value
| Class | Description |
| bool | A value that indicates whether this instance was already initialized. |
Sample code
| 1: | writer w = new writer("c:\somewhere...\sample.txt"); |
| 2: | bool init = w.Fitted; // true; |
| 3: | w = new writer(); |
| 4: | init = w.Fitted; // false; |
Notes
An instance that is created by declaration is still uninitialized.
Links for reference
None.


