|
用紙の縦には、縦用ヘッダー、用紙の横には、横用のヘッダーを
それぞれ付加したいのですが、識別する方法はありますか?
又、ヘッダーが連続かどうかを識別する方法はありますか?
コマンドを次のようにして動かして見ましたが上手く動作しませんでした。
With Selection.PageSetup
If .PageWidth = MillimetersToPoints(210) Then
If .PageHeight = MillimetersToPoints(297) Then
If .SectionStart = wdSectionContinuous Then
Else
NormalTemplate.AutoTextEntries("QC054_copy_mark").Insert Where:=Selection.Range
End If
End If
Else
If .PageHeight = MillimetersToPoints(297) Then
Else
If .SectionStart = wdSectionContinuous Then
Else
NormalTemplate.AutoTextEntries("QC054_copy_mark_yoko").Insert Where:=Selection.Range
End If
End If
End If
End With
|
|