WJJK has asked for the wisdom of the Perl Monks concerning the following question:
What I notice is that "12.4" is written in normal font. Then it changes into superscript, "(3)" is written in superscript, and finally everything changes to normal font again. Is there anyone who knows how to get it right?$Table->Cell($Row, $Col)->Range->{Text} = "12.4"; $Table->Cell($Row, $Col)->Range->Font->{Superscript} = 1; $Table->Cell($Row, $Col)->Range->InsertAfter("(3)"); $Table->Cell($Row, $Col)->Range->Font->{Superscript} = 0;
Thanks,
Walter
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: superscript in MS Word
by Jenda (Abbot) on Oct 30, 2007 at 22:30 UTC | |
by WJJK (Novice) on Oct 31, 2007 at 20:30 UTC |