Share via


PageSetup.LeftHeaderPicture Property

Excel Developer Reference

Returns a Graphic object that represents the picture for the left section of the header. Used to set attributes about the picture.

Syntax

expression.LeftHeaderPicture

expression   A variable that represents a PageSetup object.

Remarks

The LeftHeaderPicture property is read-only, but not all of its properties are read-only.

Bb177850.vs_note(en-us,office.12).gif  Note
It is required that "&G" be a part of the LeftHeader property string in order for the image to show up in the left header.

Example

The following example adds a picture titled: Sample.jpg from the C: drive to the left section of the header. This example assumes that a file called Sample.jpg exists on the C: drive.

Visual Basic for Applications
  Sub InsertPicture()
With ActiveSheet.PageSetup.<strong class="bterm">LeftHeaderPicture</strong>
    .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 header.
ActiveSheet.PageSetup.LeftHeader = "&amp;G"

End Sub

See Also