Help for this page

Select Code to Download


  1. or download this
    Selection.Style = ActiveDocument.Styles "Heading 1"
      Selection.TypeText Text:="The Title"
    
  2. or download this
    $Word->Selection->TypeText ({ Text => "The Title",
                                           Style => 'Heading 1',
      });
    
  3. 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});