BackgroundImage.Path

This property returns/sets the background image path.

Syntax Parameters Return Value
- - String

SVB Example

Customizing the background:

Sub Main

    'Specify that we will use a file (image) as the background,
    'that we will stretch the image to fit the background,
    'and then indicate where the file is located.
    Application.Option.BackgroundImage.Type = scBackgroundFile
    Application.Option.BackgroundImage.Render = scBackgroundRenderStretch
    Application.Option.BackgroundImage.Path = "C:\Users\jsteinbeck\Pictures\farmhouse.jpg"

End Sub