Documentation
RegisterAttributeInteger
Require: IP-Symcon >= 5.1
void RegisterAttributeInteger (string $Name, int $DefaultValue)
Parameters
Name | Name of the attribute |
DefaultValue | Default value of the attribute |
Returns
No Return
Description
This function creates an attribute of the type integer with the name Name and the default value DefaultValue
This function can only be called in the Create method!
Example
public function Create() {
// Don't delete or change this line.
parent::Create();
$this->RegisterAttributeInteger("SequenceCounter", 0);
}