in reply to Loop through Word Sections?
Check the Word Object Model Reference for more information.... my $sections = $doc->Sections->Count(); for(1..$sections) { $doc->Sections($_)->Headers(1)->Range->InsertAfter("New Header + Text"); } ..
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Loop through Word Sections?
by Anonymous Monk on Oct 04, 2010 at 18:32 UTC | |
by Anonymous Monk on Oct 04, 2010 at 18:46 UTC | |
by Anonymous Monk on Oct 04, 2010 at 18:52 UTC |