48 references to PrintTicketScope
ReachFramework (48)
PrintConfig\FallbackPTProvider.cs (6)
127PrintTicketToDevMode(devMode, internalTicket, PrintTicketScope.JobScope, DevModeFields.All); 262PrintTicketScope scope, 303public override MemoryStream ConvertDevModeToPrintTicket(byte[] devMode, PrintTicketScope scope) 331PrintTicketScope scope) 469private void PrintTicketToDevMode(DevMode devMode, InternalPrintTicket ticket, PrintTicketScope scope, DevModeFields supportedFields) 484private InternalPrintTicket DevModeToPrintTicket(DevMode devmode, PrintTicketScope scope, DevModeFields supportedFields)
PrintConfig\PrintSchemaShim.cs (14)
191public static void CopyDevModeToTicket(InternalPrintTicket baseTicket, DevMode deltaDevMode, PrintTicketScope scope, DevModeFields supportedFields) 198if (scope >= PrintTicketScope.DocumentScope) 206if (scope >= PrintTicketScope.PageScope) 215if (scope >= PrintTicketScope.JobScope) 224if (scope >= PrintTicketScope.PageScope) 268if (scope >= PrintTicketScope.JobScope) 283public static void CopyTicketToDevMode(DevMode baseDevMode, InternalPrintTicket deltaTicket, PrintTicketScope scope, DevModeFields supportedFields) 290if (scope >= PrintTicketScope.PageScope) 373if (scope >= PrintTicketScope.DocumentScope) 388if (scope >= PrintTicketScope.JobScope) 637private static void SetInputBin(InternalPrintTicket ticket, PrintTicketScope scope, short devModePaperSouceCode) 643case PrintTicketScope.JobScope: 649case PrintTicketScope.DocumentScope: 655case PrintTicketScope.PageScope:
PrintConfig\PTConverter.cs (14)
134return ConvertDevModeToPrintTicket(devMode, PrintTicketScope.JobScope); 150/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 159PrintTicketScope scope) 193return ConvertPrintTicketToDevMode(printTicket, baseType, PrintTicketScope.JobScope); 213/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 223PrintTicketScope scope) 239PrintTicketScope scope) 245if ((scope != PrintTicketScope.PageScope) && 246(scope != PrintTicketScope.DocumentScope) && 247(scope != PrintTicketScope.JobScope)) 260PrintTicketScope scope) 273if ((scope != PrintTicketScope.PageScope) && 274(scope != PrintTicketScope.DocumentScope) && 275(scope != PrintTicketScope.JobScope))
PrintConfig\PTManager.cs (8)
338return MergeAndValidatePrintTicket(basePrintTicket, deltaPrintTicket, PrintTicketScope.JobScope); 360/// The <paramref name="scope"/> parameter is not one of the standard <see cref="PrintTicketScope"/> values. 371PrintTicketScope scope) 379if ((scope != PrintTicketScope.PageScope) && 380(scope != PrintTicketScope.DocumentScope) && 381(scope != PrintTicketScope.JobScope)) 415PrintTicketScope.JobScope); 432PrintTicketScope.JobScope);
PrintConfig\PTProvider.cs (3)
290PrintTicketScope scope, 396PrintTicketScope scope) 461PrintTicketScope scope)
PrintConfig\PTProviderBase.cs (3)
86PrintTicketScope scope, 95public abstract MemoryStream ConvertDevModeToPrintTicket(byte[] devMode, PrintTicketScope scope); 104public abstract byte[] ConvertPrintTicketToDevMode(MemoryStream printTicket, BaseDevModeType baseType, PrintTicketScope scope);