Command_SetNamedProperty()

Examples


The Command_SetNamedProperty() function temporarily adds a property with the specified name to a command. It then sets the value for the property.

Syntax

Command_SetNamedProperty(command_tag, property_name, value)

Parameters

command_tag – The integer tag value for the command for which a named property is being added and set.

property_name – A string specifying the name of the property being added to the command.

value – A string specifying the value for the property.

Return value

A boolean indicating whether the named property was added and set. True indicates the property was added and set, while false indicates it was not.

Comments

The named property and its value are valid only for the current session of the application. The named property can be retrieved with the Command_GetNamedProperty() function.


Documentation Feedback