[]
Gets or sets whether to display gridlines.
This property applies to image export scenarios that use ImageSaveOptions, such as exporting a worksheet or range to an image.
public bool? ShowGridlines { get; set; }
Public Property ShowGridlines As Boolean?
ImageSaveOptions options = new ImageSaveOptions();
options.ShowGridlines = true;
bool? showGridlines = options.ShowGridlines;