我试图通过划分为部分并使linktoprevios为false来在每个页面上动态放置不同的页眉和页脚,但它给出了这个错误消息
在此对象上找不到属性“LinkToPrevious”;确保它存在并且是可设置的。在 D:\work\scripts_done\abcd\config.ps1:19 char:36 + $Doc.LastSection.HeadersFooters。<<<< LinkToPrevious = $false; + CategoryInfo : InvalidOperation: (LinkToPrevious:String) [], RuntimeException + FullyQualifiedErrorId : PropertyNotFound
这有什么问题......我的文档在一页中只占用 26 行我试图在每一页上插入页眉页脚
$target_dir="D:\ABCD"
$dir="$target_dir"
$val=ls $dir
$filename="D:\ABCD\er.txt"
$filedata = (get-content $filename)
$Word = New-Object -ComObject Word.Application;
$Word.Visible = $true;
$Doc = $Word.Documents.Add();
$selection.Font.Name="Courier New"
$selection.Font.Size=11
$selection.Font.Spacing=0.5
$selection=$word.Selection
$count=0
foreach ( $line in $filedata ){
if ( $count -eq 26 ){
$Doc.LastSection.HeadersFooters.Header.Add("abcd $count");
$Doc.AddSection();
$Doc.LastSection.HeadersFooters.LinkToPrevious = $false;
$count=0;
}
$count++;
}