文字列は、タブ文字によって最大3つのセクションに分割できます。これらのセクションは、それぞれ各ページの上端で左、中央、右に揃えられます。
文字列には、現在のページ番号とページ総数に置換されるプレースホルダ({0} と {1})を入れることもできます。
ヘッダのレンダリングに使用されるフォントを選択するには、 HeaderFontプロパティを使用します。
次のコードは、10 ポイントの Tahoma フォントで「Page n of m」と表示する右揃えのヘッダを指定します。
flex.PrintParameters.Header = vbTab & vbTab & "Page {0} of {1}" flex.PrintParameters.HeaderFont = New Font("Tahoma", 10) flex.PrintParameters.Footer = "Footer" flex.PrintGrid("Header", PrintGridFlags.ShowPreviewDialog)
flex.PrintParameters.Header = "\t\tPage {0} of {1}"; flex.PrintParameters.HeaderFont = new Font("Tahoma", 10); flex.PrintParameters.Footer = "Footer"; flex.PrintGrid("Header", PrintGridFlags.ShowPreviewDialog);