- or download this
Selection.Style = ActiveDocument.Styles "Heading 1"
Selection.TypeText Text:="The Title"
- or download this
$Word->Selection->TypeText ({ Text => "The Title",
Style => 'Heading 1',
});
- or download this
#!/usr/bin/perl -w
#Check that the path to the picture is correct on line 53
use strict;
...
$Word->Selection->TypeText ({ Text => $mass_info_hash{$mass} });
}
$Word->Selection->MoveRight({Count => 1});