[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ImageSaveOptions.ShowGridlines

ShowGridlines Property

ShowGridlines

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.

Declaration
public bool? ShowGridlines { get; set; }
Public Property ShowGridlines As Boolean?
Examples
ImageSaveOptions options = new ImageSaveOptions();
options.ShowGridlines = true;
bool? showGridlines = options.ShowGridlines;