Office Word Comを使用してWord文書を作成し、ヘッダーにページ番号を追加しましたが、ページング形式は次のようにする必要があります。
現在の唯一の数:10
私がなりたかったです :
11から10
同様に私はフォントフォーマット(太字、フォント名、フォントサイズ)を追加したいですここにコードがあります:
Sub addnumber(ByRef oWordDoc As Word.Document)
oWordDoc.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekCurrentPageHeader
oWordDoc.ActiveWindow.ActivePane.Selection.Paragraphs.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter
Dim CurrentPage As Object = Word.WdFieldType.wdFieldNumPages
oWordDoc.ActiveWindow.Selection.Fields.Add(oWordDoc.ActiveWindow.Selection.Range, CurrentPage, Type.Missing)
End Sub