[]
Gets or sets the background color of the exported image.
This property specifies the color used when exporting a worksheet, range, or shape to an image.
public Color? BackgroundColor { get; set; }
Public Property BackgroundColor As Color?
ImageSaveOptions options = new ImageSaveOptions();
options.BackgroundColor = Color.Red;
Color? backgroundColor = options.BackgroundColor;