2010-08-17 4 views

답변

2

이 작업을 시도 할 수 있습니다 :

Sub mySub() 
Dim f As Variant 

For Each f In ActiveDocument.Fields 
    f.Select 
    If Selection.Font.Hidden = True Then 
     MsgBox "Field is hidden" 
    End If 
Next 
End Sub 
관련 문제