31 references to Duplexing
ReachFramework (31)
PrintConfig\JobDuplex.cs (6)
47
public
Duplexing
Value
72
internal
Duplexing
_value;
123
option._value = (
Duplexing
)enumValue;
270
/// The value to set is not one of the standard <see cref="
Duplexing
"/>.
272
public
Duplexing
Value
276
return (
Duplexing
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1548
internal static
Duplexing
DuplexingEnumMin =
Duplexing
.Unknown;
1549
internal static
Duplexing
DuplexingEnumMax =
Duplexing
.TwoSidedLongEdge;
1998
internal static string[] DuplexNames = Enum.GetNames(typeof(
Duplexing
));
1999
internal static int[] DuplexEnums = (int[])(Array)Enum.GetValues<
Duplexing
>();
PrintConfig\PrintSchemaShim.cs (7)
403
&& deltaTicket.JobDuplex.Value !=
Duplexing
.Unknown)
577
private static void SetDuplex(DevMode devMode,
Duplexing
duplexing)
582
private static readonly IDictionary<DevModeDuplex,
Duplexing
> dmDuplexToDuplexing = new Dictionary<DevModeDuplex,
Duplexing
>(3) {
583
{DevModeDuplex.DMDUP_SIMPLEX,
Duplexing
.OneSided},
584
{DevModeDuplex.DMDUP_HORIZONTAL,
Duplexing
.TwoSidedShortEdge},
585
{DevModeDuplex.DMDUP_VERTICAL,
Duplexing
.TwoSidedLongEdge},
PrintConfig\PrtCap_Public_Simple.cs (5)
280
/// Gets a read-only collection of <see cref="
Duplexing
"/> that represents the printer's job duplex capability.
285
public ReadOnlyCollection<
Duplexing
> DuplexingCapability
291
List<
Duplexing
> valueSet = new List<
Duplexing
>();
985
private ReadOnlyCollection<
Duplexing
> _duplexingCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
480
public Nullable<
Duplexing
> Duplexing
484
Duplexing
valueGot = GetEnumValueFromCacheOrXml<
Duplexing
>(
503
AddSetterEnumValueToCache<
Duplexing
>(
505
(value == null) ? (
Duplexing
)PrintSchema.EnumUnspecifiedValue : (
Duplexing
)value);
1557
_printTicket.JobDuplex.Value = (
Duplexing
)cacheValue;