[]
Gets or sets whether the sheet will be printed without graphics.
When this property returns true, the worksheet is printed in draft mode.
bool Draft { get; set; }
Property Draft As Boolean
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.Draft = true;
bool draft = pageSetup.Draft;