31 references to Duplexing
ReachFramework (31)
PrintConfig\JobDuplex.cs (6)
41
public
Duplexing
Value
66
internal
Duplexing
_value;
117
option._value = (
Duplexing
)enumValue;
264
/// The value to set is not one of the standard <see cref="
Duplexing
"/>.
266
public
Duplexing
Value
270
return (
Duplexing
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1545
internal static
Duplexing
DuplexingEnumMin =
Duplexing
.Unknown;
1546
internal static
Duplexing
DuplexingEnumMax =
Duplexing
.TwoSidedLongEdge;
1995
internal static string[] DuplexNames = Enum.GetNames(typeof(
Duplexing
));
1996
internal static int[] DuplexEnums = (int[])(Array)Enum.GetValues<
Duplexing
>();
PrintConfig\PrintSchemaShim.cs (7)
399
&& deltaTicket.JobDuplex.Value !=
Duplexing
.Unknown)
573
private static void SetDuplex(DevMode devMode,
Duplexing
duplexing)
578
private static readonly IDictionary<DevModeDuplex,
Duplexing
> dmDuplexToDuplexing = new Dictionary<DevModeDuplex,
Duplexing
>(3) {
579
{DevModeDuplex.DMDUP_SIMPLEX,
Duplexing
.OneSided},
580
{DevModeDuplex.DMDUP_HORIZONTAL,
Duplexing
.TwoSidedShortEdge},
581
{DevModeDuplex.DMDUP_VERTICAL,
Duplexing
.TwoSidedLongEdge},
PrintConfig\PrtCap_Public_Simple.cs (5)
274
/// Gets a read-only collection of <see cref="
Duplexing
"/> that represents the printer's job duplex capability.
279
public ReadOnlyCollection<
Duplexing
> DuplexingCapability
285
List<
Duplexing
> valueSet = new List<
Duplexing
>();
979
private ReadOnlyCollection<
Duplexing
> _duplexingCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
473
public Nullable<
Duplexing
> Duplexing
477
Duplexing
valueGot = GetEnumValueFromCacheOrXml<
Duplexing
>(
496
AddSetterEnumValueToCache<
Duplexing
>(
498
(value == null) ? (
Duplexing
)PrintSchema.EnumUnspecifiedValue : (
Duplexing
)value);
1550
_printTicket.JobDuplex.Value = (
Duplexing
)cacheValue;