48 references to PrintTicketScope
ReachFramework (48)
PrintConfig\FallbackPTProvider.cs (6)
122PrintTicketToDevMode(devMode, internalTicket, PrintTicketScope.JobScope, DevModeFields.All); 257PrintTicketScope scope, 298public override MemoryStream ConvertDevModeToPrintTicket(byte[] devMode, PrintTicketScope scope) 326PrintTicketScope scope) 461private void PrintTicketToDevMode(DevMode devMode, InternalPrintTicket ticket, PrintTicketScope scope, DevModeFields supportedFields) 476private InternalPrintTicket DevModeToPrintTicket(DevMode devmode, PrintTicketScope scope, DevModeFields supportedFields)
PrintConfig\PrintSchemaShim.cs (14)
186public static void CopyDevModeToTicket(InternalPrintTicket baseTicket, DevMode deltaDevMode, PrintTicketScope scope, DevModeFields supportedFields) 193if (scope >= PrintTicketScope.DocumentScope) 201if (scope >= PrintTicketScope.PageScope) 210if (scope >= PrintTicketScope.JobScope) 219if (scope >= PrintTicketScope.PageScope) 263if (scope >= PrintTicketScope.JobScope) 278public static void CopyTicketToDevMode(DevMode baseDevMode, InternalPrintTicket deltaTicket, PrintTicketScope scope, DevModeFields supportedFields) 285if (scope >= PrintTicketScope.PageScope) 368if (scope >= PrintTicketScope.DocumentScope) 383if (scope >= PrintTicketScope.JobScope) 632private static void SetInputBin(InternalPrintTicket ticket, PrintTicketScope scope, short devModePaperSouceCode) 638case PrintTicketScope.JobScope: 644case PrintTicketScope.DocumentScope: 650case PrintTicketScope.PageScope:
PrintConfig\PTConverter.cs (14)
128return ConvertDevModeToPrintTicket(devMode, PrintTicketScope.JobScope); 144/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 153PrintTicketScope scope) 187return ConvertPrintTicketToDevMode(printTicket, baseType, PrintTicketScope.JobScope); 207/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 217PrintTicketScope scope) 233PrintTicketScope scope) 239if ((scope != PrintTicketScope.PageScope) && 240(scope != PrintTicketScope.DocumentScope) && 241(scope != PrintTicketScope.JobScope)) 254PrintTicketScope scope) 267if ((scope != PrintTicketScope.PageScope) && 268(scope != PrintTicketScope.DocumentScope) && 269(scope != PrintTicketScope.JobScope))
PrintConfig\PTManager.cs (8)
331return MergeAndValidatePrintTicket(basePrintTicket, deltaPrintTicket, PrintTicketScope.JobScope); 353/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 364PrintTicketScope scope) 372if ((scope != PrintTicketScope.PageScope) && 373(scope != PrintTicketScope.DocumentScope) && 374(scope != PrintTicketScope.JobScope)) 408PrintTicketScope.JobScope); 425PrintTicketScope.JobScope);
PrintConfig\PTProvider.cs (3)
280PrintTicketScope scope, 386PrintTicketScope scope) 451PrintTicketScope scope)
PrintConfig\PTProviderBase.cs (3)
83PrintTicketScope scope, 92public abstract MemoryStream ConvertDevModeToPrintTicket(byte[] devMode, PrintTicketScope scope); 101public abstract byte[] ConvertPrintTicketToDevMode(MemoryStream printTicket, BaseDevModeType baseType, PrintTicketScope scope);