# Setting a Background Image for a Sheet

Learn how to set a background image for a sheet in your spreadsheet with step-by-step instructions. Find out how to avoid image repetition and enhance the visual appeal of your data presentation.

## Content

You can set an image in the background of the cells in the data area of the sheet. Depending on the size of the graphic and the size of the spreadsheet, the image may be repeated (tiled) over the entire sheet of cells, as shown in the following figure.
![Sheet Background Image Example](https://cdn.mescius.io/document-site-files/images/2238e618-a1fb-45a6-9ce5-9a4157bd2931/images/sheet-back-image.png)
For more information on setting an image in an individual cell, refer to [Setting a Background Image to a Cell](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearsheet/spwin-cell-backimage).
For more information on the image cell type, refer to [Setting an Image Cell](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setcelltypes/spwin-setgraphcelltypes/spwin-setimagecell).

## Using Code

1. Set the [BackgroundImage](/spreadnet/api/latest/online-win/FarPoint.Win.Spread/FarPoint.Win.Spread.FpSpread.BackgroundImage.html) property.

## Example

This example code sets the background image of the sheet.

```csharp
private void Form1_Load(object sender, System.EventArgs e)
{
   //Specify background images.
   fpSpread1.BackgroundImage = Image.FromFile("D:\\images\\butterfly.gif");
      
}
```

```vbnet
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
   'Specify background images.
   fpSpread1.BackgroundImage = Image.FromFile("D:\images\butterfly.gif")
End Sub
```

## See Also

[Setting the Background Colors for a Sheet](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearsheet/spwin-sheetbackcolor)
[Coloring a Cell](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearsheet/spwin-cellcolor)
[Setting a Background Image to a Cell](/spreadnet/docs/latest/online-win/overview/spwin-devguide/spwin-setappearance/spwin-appearsheet/spwin-cell-backimage)