« Back to Product

Documentation

RegisterAttributeString

Require: IP-Symcon >= 5.1

 void RegisterAttributeString (string $Name, string $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 string with the name Name and the default value DefaultValue

Warning

This function can only be called in the Create method!

Example

public function Create() {

    // Don't delete or change this line.
    parent::Create();

    $this->RegisterAttributeString("Token", ""); 

}
Any questions?