[]
Gets or sets whether to display column headings.
This option controls whether worksheet column headers are included when exporting to an image.
public bool? ShowColumnHeadings { get; set; }
Public Property ShowColumnHeadings As Boolean?
ImageSaveOptions options = new ImageSaveOptions();
options.ShowColumnHeadings = true;
bool? showColumnHeadings = options.ShowColumnHeadings;