cormanaz has asked for the wisdom of the Perl Monks concerning the following question:
But how do I change the text color of these paragraphs?#!/usr/bin/perl -w use strict; use Win32::OLE; my $document_name = 'C:\Users\boss\worddoc.doc'; my $word = Win32::OLE->GetActiveObject('Word.Application') || Win32::OLE->new('Word.Application','Quit') or die Win32::OLE->LastError(); my $document = $word->Documents->Open($document_name) or die Win32::OLE->LastError(); my $paragraphs = $document->Paragraphs(); my $n_paragraphs = $paragraphs->Count(); for my $p (1..$n_paragraphs) { my $paragraph = $paragraphs->Item($p); my $text = $paragraph->Range->Text(); if ($text =~ /interviewer/i) { print "$text\n\n"; } } $document->close;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32 OLE change paragraph text color
by poj (Abbot) on Aug 01, 2016 at 19:14 UTC | |
by cormanaz (Deacon) on Aug 01, 2016 at 19:57 UTC |