グラフィック オブジェクト (Excel)
ヘッダーおよびフッターの画像オブジェクトに適用されるプロパティを包含します。
注釈
PageSetup オブジェクトの次のプロパティを使用して、Graphic オブジェクトを取得します。
- CenterFooterPicture
- CenterHeaderPicture
- LeftFooterPicture
- LeftHeaderPicture
- RightFooterPicture
- RightHeaderPicture
注:
左フッターに画像を表示するには、"&G" が LeftFooter 文字列の一部である必要があります。
例
次の例では、C:\ ドライブの Sample.jpg というタイトルの画像をフッターの左側のセクションに追加します。 次の使用例では、C:\ ドライブに Sample.jpg というファイルがあるものとします。
Sub InsertPicture()
With ActiveSheet.PageSetup.LeftFooterPicture
.FileName = "C:\Sample.jpg"
.Height = 275.25
.Width = 463.5
.Brightness = 0.36
.ColorType = msoPictureGrayscale
.Contrast = 0.39
.CropBottom = -14.4
.CropLeft = -28.8
.CropRight = -14.4
.CropTop = 21.6
End With
' Enable the image to show up in the left footer.
ActiveSheet.PageSetup.LeftFooter = "&G"
End Sub
プロパティ
- Application
- Brightness
- ColorType
- Contrast
- Creator
- CropBottom
- CropLeft
- CropRight
- CropTop
- Filename
- Height
- LockAspectRatio
- Parent
- Width
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。