« Back to Product

Documentation

Destroy

Require: IP-Symcon >= 4.1

 void Destroy ()

Returns

No Return

Description

This function is called when deleting the instance during operation and when updating via "Module Control". The function is not called when exiting IP-Symcon.

Warning

The Destroy function is called by IP-Symcon. It must therefore be overwritten by the base class in order to add individual extensions.

Example

// Normally, this function does not need to be overwritten.
public function Destroy() {
	//Never delete this line!
	parent::Destroy();
}
Any questions?