[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ImageSaveOptions.ShowDrawingObjects

ShowDrawingObjects Property

ShowDrawingObjects

Gets or sets whether to display drawing objects (charts, shapes, and pictures).

This option controls whether drawing objects are included when exporting to an image.

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