How to insert a blank line
Hello,
I would like to insert a blank line when printing master data (based on the line number). WHy? Simply because I have to reproduce identically an official form which divide a grid in two parts. This avoid the damage of the text in the middle of the page, the document is intended for the optical reading.
Any idea?
Thanks
Pierre
I would like to insert a blank line when printing master data (based on the line number). WHy? Simply because I have to reproduce identically an official form which divide a grid in two parts. This avoid the damage of the text in the middle of the page, the document is intended for the optical reading.
Any idea?
Thanks
Pierre
Comments
If CurY=Round(PageHeight/2)-Round(DesiredBlankSpace/2) then
Begin
CurY:=CurY+DesiredBlankSpace;
End;
Positioning may be different if You don't want the blank space exactly in the middle of the page height. For exact positioning set *Align to grid* to False in the options dialog.
Regards:Alex