property NETHostCtrl.IsCreated as NETHostType
Specifies if the assembly is loaded and the control created.

TypeDescription
NETHostType A NETHostType expression that specifies the type of object being hosted which can be one of the following: 
  • 0/NETHostType_exNETHostNothing,  The NETHost control hosts nothing.
  • 1/NETHostType_exNETHostControl,  The NETHost component hosts an object of System.Windows.Forms.Control type.
  • 2/NETHostType_exNETHostObject,  The NETHost component hosts a general object.
By default, the IsCreated property is NETHostType_exNETHostNothing, which indicates that the NETHost control hosts nothing. The IsCreated property specifies the type of the object the NETHost control hosts. The Create(assemblyLocation, assemblyName) method loads the specified file, and creates the giving type. The Create method returns the same value as IsCreated property. The Destroy method unloads the hosting control. 

There are three ways of loading/creating a manifest/component/assembly as listed:

If succeeded, ( the assembly is loaded and the object is created ), the 

The Host property returns the object being hosted by the NETHost control.

If fails, the