Created
May 21, 2010 18:43
-
-
Save kgbu/409246 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub chkpagenator() | |
| ' | |
| ' chkpagenator Macro | |
| ' 見出し1でもないのに、段落前で改ページしている要素を発見する | |
| ' | |
| Dim p As Paragraph | |
| Dim s As Style | |
| For Each p In ActiveDocument.Paragraphs | |
| Set s = p.Style | |
| If Not s.NameLocal Like "*見出し*" Then | |
| If p.PageBreakBefore < 0 Then | |
| MsgBox (p.Range & s.NameLocal & ":" & p.OutlineLevel & ":" & p.PageBreakBefore) | |
| End If | |
| End If | |
| Next p | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment