31 references to Duplexing
ReachFramework (31)
PrintConfig\JobDuplex.cs (6)
40
public
Duplexing
Value
65
internal
Duplexing
_value;
116
option._value = (
Duplexing
)enumValue;
265
/// The value to set is not one of the standard <see cref="
Duplexing
"/>.
267
public
Duplexing
Value
271
return (
Duplexing
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1542
internal static
Duplexing
DuplexingEnumMin =
Duplexing
.Unknown;
1543
internal static
Duplexing
DuplexingEnumMax =
Duplexing
.TwoSidedLongEdge;
1992
internal static string[] DuplexNames = Enum.GetNames(typeof(
Duplexing
));
1993
internal static int[] DuplexEnums = (int[])(Array)Enum.GetValues<
Duplexing
>();
PrintConfig\PrintSchemaShim.cs (7)
398
&& deltaTicket.JobDuplex.Value !=
Duplexing
.Unknown)
572
private static void SetDuplex(DevMode devMode,
Duplexing
duplexing)
577
private static readonly IDictionary<DevModeDuplex,
Duplexing
> dmDuplexToDuplexing = new Dictionary<DevModeDuplex,
Duplexing
>(3) {
578
{DevModeDuplex.DMDUP_SIMPLEX,
Duplexing
.OneSided},
579
{DevModeDuplex.DMDUP_HORIZONTAL,
Duplexing
.TwoSidedShortEdge},
580
{DevModeDuplex.DMDUP_VERTICAL,
Duplexing
.TwoSidedLongEdge},
PrintConfig\PrtCap_Public_Simple.cs (5)
273
/// Gets a read-only collection of <see cref="
Duplexing
"/> that represents the printer's job duplex capability.
278
public ReadOnlyCollection<
Duplexing
> DuplexingCapability
284
List<
Duplexing
> valueSet = new List<
Duplexing
>();
978
private ReadOnlyCollection<
Duplexing
> _duplexingCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
472
public Nullable<
Duplexing
> Duplexing
476
Duplexing
valueGot = GetEnumValueFromCacheOrXml<
Duplexing
>(
495
AddSetterEnumValueToCache<
Duplexing
>(
497
(value == null) ? (
Duplexing
)PrintSchema.EnumUnspecifiedValue : (
Duplexing
)value);
1549
_printTicket.JobDuplex.Value = (
Duplexing
)cacheValue;