PrintingPermissionLevel
Specifies the type of printing that code is allowed to do.
                namespace System.Drawing.Printing
{
    public enum PrintingPermissionLevel
    {
        AllPrinting = 3,
        DefaultPrinting = 2,
        NoPrinting = 0,
        SafePrinting = 1
    }
}