如何使用powershell检查msword复选框的值

时间:2016-03-02 12:21:24

标签: powershell

我想使用powershell脚本勾选并取消选中MS Word复选框。使用下面的代码我只能使用书签找到复选框。如何设置复选框的值?请帮忙!

$bookmark="bmMale"
If($Document.Bookmarks.Exists($bookmark)){
$bookmark="bmMale"
Write-Host "Found bookmark " $bookmark
$objRange = $Document.Bookmarks.Item($bookmark).Range
}

1 个答案:

答案 0 :(得分:1)

如果它是内容控件,您可以这样更改:

$winword = New-Object -ComObject Word.Application    
$winword.ActiveDocument.ContentControls.Item(1).Checked = $true