48 references to PrintTicketScope
ReachFramework (48)
PrintConfig\FallbackPTProvider.cs (6)
123PrintTicketToDevMode(devMode, internalTicket, PrintTicketScope.JobScope, DevModeFields.All); 258PrintTicketScope scope, 299public override MemoryStream ConvertDevModeToPrintTicket(byte[] devMode, PrintTicketScope scope) 327PrintTicketScope scope) 465private void PrintTicketToDevMode(DevMode devMode, InternalPrintTicket ticket, PrintTicketScope scope, DevModeFields supportedFields) 480private InternalPrintTicket DevModeToPrintTicket(DevMode devmode, PrintTicketScope scope, DevModeFields supportedFields)
PrintConfig\PrintSchemaShim.cs (14)
187public static void CopyDevModeToTicket(InternalPrintTicket baseTicket, DevMode deltaDevMode, PrintTicketScope scope, DevModeFields supportedFields) 194if (scope >= PrintTicketScope.DocumentScope) 202if (scope >= PrintTicketScope.PageScope) 211if (scope >= PrintTicketScope.JobScope) 220if (scope >= PrintTicketScope.PageScope) 264if (scope >= PrintTicketScope.JobScope) 279public static void CopyTicketToDevMode(DevMode baseDevMode, InternalPrintTicket deltaTicket, PrintTicketScope scope, DevModeFields supportedFields) 286if (scope >= PrintTicketScope.PageScope) 369if (scope >= PrintTicketScope.DocumentScope) 384if (scope >= PrintTicketScope.JobScope) 633private static void SetInputBin(InternalPrintTicket ticket, PrintTicketScope scope, short devModePaperSouceCode) 639case PrintTicketScope.JobScope: 645case PrintTicketScope.DocumentScope: 651case PrintTicketScope.PageScope:
PrintConfig\PTConverter.cs (14)
129return ConvertDevModeToPrintTicket(devMode, PrintTicketScope.JobScope); 145/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 154PrintTicketScope scope) 188return ConvertPrintTicketToDevMode(printTicket, baseType, PrintTicketScope.JobScope); 208/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 218PrintTicketScope scope) 234PrintTicketScope scope) 240if ((scope != PrintTicketScope.PageScope) && 241(scope != PrintTicketScope.DocumentScope) && 242(scope != PrintTicketScope.JobScope)) 255PrintTicketScope scope) 268if ((scope != PrintTicketScope.PageScope) && 269(scope != PrintTicketScope.DocumentScope) && 270(scope != PrintTicketScope.JobScope))
PrintConfig\PTManager.cs (8)
332return MergeAndValidatePrintTicket(basePrintTicket, deltaPrintTicket, PrintTicketScope.JobScope); 354/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 365PrintTicketScope scope) 373if ((scope != PrintTicketScope.PageScope) && 374(scope != PrintTicketScope.DocumentScope) && 375(scope != PrintTicketScope.JobScope)) 409PrintTicketScope.JobScope); 426PrintTicketScope.JobScope);
PrintConfig\PTProvider.cs (3)
281PrintTicketScope scope, 387PrintTicketScope scope) 452PrintTicketScope scope)
PrintConfig\PTProviderBase.cs (3)
84PrintTicketScope scope, 93public abstract MemoryStream ConvertDevModeToPrintTicket(byte[] devMode, PrintTicketScope scope); 102public abstract byte[] ConvertPrintTicketToDevMode(MemoryStream printTicket, BaseDevModeType baseType, PrintTicketScope scope);