View Single Post
 
Old 01-03-2024, 03:35 PM
AVarg123 AVarg123 is offline Windows 10 Office 2016
Novice
 
Join Date: Dec 2021
Posts: 15
AVarg123 is on a distinguished road
Default

Thank you!
The below code worked.

Private Sub Document_ContentControlOnExit(ByVal aCC As ContentControl, Cancel As Boolean)
If aCC.Type = wdContentControlCheckBox Then
aCC.Range.Rows(1).Range.Font.Hidden = Not aCC.Checked
End If
End Sub
Reply With Quote