Orangevolt ANT Tasks » Tasks » preferences » Set Preferences data | ||
Element boolean | Element double |
The bytearray element defines a single bytearray data entry in a Preferences node.
Name | Description | Required |
name | The name of the entry. | yes |
value |
The value will be taken either from attribute value or from the body of the element. bytearray data is defined as a bunch of numbers (representing single bytes) separated by a separator. |
yes |
path |
The path of the node where the entry should set. The path is used relative to the base path defined in the preferences task. If the given path does not exists it will be created. |
no |
separator |
The separator defines the characters which separate the numbers of single bytes. separator defaults to ", " which means that without defining a special separator you can simply write your data comma separated (1,5,120,-4 for example). |
no |
radix |
The radix defines the encoding of a number representing a single byte . radix defaults to 10 which means that an entry will be edited decimal encoded (set radix to 16 for hexadecimal encoding etc). |
no |