Excel & Word - 머리글&바닥글 삭제
- Study/VBA
- 2014. 11. 1. 02:25
반응형
반응형
머리글&바닥글 삭제
Sub KillHeaderAndFooter()
Dim objHF As HeaderFooter
Dim objSection As Section
For Each objSection In ActiveDocument.Sections
For Each objHF In objSection.Headers
objHF.Range.Delete
Next objHF
For Each objHF In objSection.Footers
objHF.Range.Delete
Next objHF
Next objSection
End Sub
------------
응용해서 바닥글만 삭제 한다면
Sub KillFooter()
Dim objHF As HeaderFooter
Dim objSection As Section
For Each objSection In ActiveDocument.Sections
For Each objHF In objSection.Footers
objHF.Range.Delete
Next objHF
Next objSection
End Sub
요렇게 하면 되겠습니다.
반응형
'Study > VBA' 카테고리의 다른 글
Excel VBA 원하는 행,열 추출하여 정리하기. (0) | 2015.09.25 |
---|---|
[Word] 글자에 해당하는 그림 파일 가져오기 (1) | 2015.09.08 |
[Word] 그림 삽입 VBA (0) | 2015.09.08 |
이 글을 공유하기