XML tags specification
Legend
| Type | Description | Sample value |
|---|---|---|
| int | integer | 123, -456 |
| bool | boolean | true, false |
| float | floating | 4.5, -10.7 |
| string | string | 'Pix', 'AS' |
| hex | hexadecimal string | 2 = '02', char 2 = '32', chars AB = '4142' |
| color | color in format: integer, $BGGRR, #RRGHBB, $BGGRR, #AARRGHBB | 255, $0000FF, #FF0000, $FF0000FF, #FFFF0000 |
| subnode | xml sub node | <Node> <SubNode /> </Node> |
| subnodes | xml sub nodes | <Node> <SubNode /> <SubNode /> ... </Node> |
| CDATA | string value in node | <Value> <![CDATA[...]]> </Value> |