[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ImageSaveOptions.BackgroundColor

BackgroundColor Property

BackgroundColor

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.

Declaration
public Color? BackgroundColor { get; set; }
Public Property BackgroundColor As Color?
Examples
ImageSaveOptions options = new ImageSaveOptions();
options.BackgroundColor = Color.Red;
Color? backgroundColor = options.BackgroundColor;