Determines whether a model is loaded on the target.

Namespace:  Quanser.Targets
Assembly:  Quanser.Targets (in Quanser.Targets.dll)

Syntax

Visual Basic (Declaration)
Public Function IsModelLoaded ( _
	name As String _
) As Boolean
C#
public bool IsModelLoaded(
	string name
)
Visual C++
public:
bool IsModelLoaded(
	String^ name
)
JavaScript
function isModelLoaded(name);

Parameters

name
Type: System..::.String
The name of the model.

Return Value

Returns true if the model is loaded on the target and false otherwise.

Remarks

This method returns true if the given model is loaded on the target and false otherwise. Note that the status of the model can change at any time, so this only reflects a snapshot of the current state of the model.

See Also