/**
* Adding many autotexts in the same position (header/footer and
* aligment) makes them to be one on top of the other
*/
Style atStyle = new StyleBuilder(true).setFont(Font.COMIC_SANS_SMALL).setTextColor(Color.red).build();
AutoText created = new AutoText(Labels.getLabel("common.Created") + ": " + ZksampleDateFormat.getDateTimeFormater().format(new Date()), AutoText.POSITION_HEADER, HorizontalBandAlignment.RIGHT);
created.setWidth(new Integer(120));
created.setStyle(atStyle);
drb.addAutoText(created);