{description}
{excerpt}Sets or returns whether Excel will print the worksheet in draft quality. This can be used to reduce printing time. When this is set to {{true}}, Excel does not print gridlines and most graphics. This is set to false by default.{excerpt}
{signature:C#}
 public boolean PrintAsDraft{ get; set; }
{signature}{signature:vb.net}
Public Property PrintAsDraft() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Get PrintAsDraft
          bool draft = ps.PrintAsDraft;

          //--- Set PrintAsDraft
          ps.PrintAsDraft = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Get PrintAsDraft
          Dim draft As Boolean = ps.PrintAsDraft

          '--- Set PrintAsDraft
          ps.PrintAsDraft = True
        {code}

{example}