Click or drag to resize

BasicNoUIObjIsInitialized Method

Determines if the object is initialized.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public bool IsInitialized()

Return Value

Boolean
True if the object is initialized.
Remarks
The object must be initialized before it can be used.
Example
If not initialized then initialize:
if (!basicIdeObj1.IsInitialized())
    basicIdeObj1.Initialize();
See Also