NoProjectSync Property

Description
Sets / returns whether the current project in the PC should be synchronized with the Controller project.

Syntax
NoProjectSync

Type
Boolean

Default Value
False

Remarks
When NoProjectSync is set to False (default), then the Spel class ensures that the project on the PC is synchronized with the project on the Controller.
When NoProjectSync is set to True, the Spel class does not check for any project on the PC and does not synchronize the PC project with the Controller. This allows you to run programs in the Controller without any project on the PC.

This property is not persistent. You must set it after creating a Spel class instance if you want to set it to True.

See Also
Start Method

NoProjectSync Examples
VB Example:

m_spel.Initialize()  
m_spel.NoProjectSync = True  

C# Example:

m_spel.Initialize();  
m_spel.NoProjectSync = true;