programming-examples/perl/Win32/Word document Font- size, small caps, animation.pl

17 lines
437 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl
use warnings;
use strict;
use Win32::OLE;
chomp( my $line = <STDIN> );
my $word = new Win32::OLE( "Word.Application" )
or die( "Error opening a document in Word: $!" );
$word->{ Visible } = 1;
$word->Documents->Add();
$word->Selection->Font->{ Size } = 100;
$word->Selection->Font->{ SmallCaps } = 1;
$word->Selection->Font->{ Animation } = 3; # sparkle text
$word->Selection->TypeText( $line );