[]
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.
public bool? ShowDrawingObjects { get; set; }
Public Property ShowDrawingObjects As Boolean?
ImageSaveOptions options = new ImageSaveOptions();
options.ShowDrawingObjects = true;
bool? showDrawingObjects = options.ShowDrawingObjects;