[]
Options for saving image file.
public class ImageSaveOptions
public ImageSaveOptions()
Gets or sets the background color of the exported image.
public Color? BackgroundColor { get; set; }
Gets or sets whether to save the image as a black and white image.
public bool? BlackAndWhite { get; set; }
Gets or sets the gridline color.
public Color? GridlineColor { get; set; }
Gets or sets the resolution (in DPI) for jpeg image file.
public int? Resolution { get; set; }
Gets or sets the scale on the X axis.
public double? ScaleX { get; set; }
Gets or sets the scale on the Y axis.
public double? ScaleY { get; set; }
Gets or sets whether to display column headings.
public bool? ShowColumnHeadings { get; set; }
Gets or sets whether to display drawing objects (charts, shapes, and pictures).
public bool? ShowDrawingObjects { get; set; }
Gets or sets whether to display gridlines.
public bool? ShowGridlines { get; set; }
Gets or sets whether to display row headings.
public bool? ShowRowHeadings { get; set; }