02-01-2021 04:08 AM
Hello everyone,
In our PDF report, we mark the information we obtain from our customers with an "a" in superscript in front of a text. The problem is the superscript a crosses upper line and extends to the previous line which doesn't look nice (see picture, screenshot of PDF report at 128%). The superscript is written as
^ha^n
One solution to solve it would be to enlarge the lines, but then the page won't fit all the information we need. Is there maybe settings to lower the superscript a bit? I couldn't find it anywhere. Or other solution at all?
Thank you very much
Marek
Solved! Go to Solution.
02-01-2021 11:34 AM
Maybe using a unicode character might work.
ª Custom
Just copy and paste the character from above.
If you work with script you need to make sure your script is unicode or use ChrW method.
MsgBox (ChrW(&h00AA) & " Custom")
You will find charaters like this using "Windows Character Map".
02-02-2021 05:51 AM - edited 02-02-2021 05:52 AM
Thank you very much, AndreasK!
It works again. I used the Ctrl+C, Ctrl+V method.
Marek