[]
Gets or sets whether the sheet will be printed without graphics.
When this property is true, the sheet is printed without graphics.
public bool Draft { get; set; }
Public Property Draft As Boolean
PageSettings pageSettings = new PageSettings();
pageSettings.Draft = true;
bool draft = pageSettings.Draft;