pipe class : Fitted getter
Description
Gets a value that indicates whether this instance was already initialized.
Syntax
pipeInstance.Fitted
Arguments
None
Return value
| Class | Description |
| bool | A value that indicates whether this instance was already initialized. |
Sample code
| 1: | pipe p; |
| 2: | bool init = p.Fitted; // false |
| 3: | p = new pipe(); |
| 4: | init = p.Fitted; // false |
| 5: | p = new pipe("newchannel"); |
| 6: | init = p.Fitted; // true |
Notes
Instance that is created by declaration is still uninitialized.
Links for reference
None.


