Documentation
RegisterAttributeBoolean
Require: IP-Symcon >= 5.1
void RegisterAttributeBoolean (string $Name, boolean $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 boolean with name Name and 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->RegisterAttributeBoolean("CurrentState", true);
}