prova


<!ELEMENT stringformat (#PCDATA)>

Set how to display the field

 

Parent:

field
 

Childs:

#PCDATA
 

Attributes:

 

Note:

This tag accept the format string used by 'sprintf'. See the 'printf' manual page for more detail.
Some valid format:
Apply the following format to the number '67' you will get ' 67'
%6.0f

Do you want pad the number with zero? Use
%06.0f
to get '000067'.

The format
%06.2f
shows '000067.00'.

Some text formatting applied to the string 'abcd'
right align with leading spaces:
%-10x
output:
' abcd'

left align with fixed size and trailng spaces
%10x
'abcd '