30 references to Collation
ReachFramework (30)
PrintConfig\JobCollate.cs (6)
47
public
Collation
Value
72
internal
Collation
_value;
124
option._value = (
Collation
)enumValue;
272
/// The value to set is not one of the standard <see cref="
Collation
"/>.
274
public
Collation
Value
278
return (
Collation
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1542
internal static
Collation
CollationEnumMin =
Collation
.Unknown;
1543
internal static
Collation
CollationEnumMax =
Collation
.Uncollated;
1988
internal static string[] CollationNames = Enum.GetNames(typeof(
Collation
));
1989
internal static int[] CollationEnums = (int[])(Array)Enum.GetValues<
Collation
>();
PrintConfig\PrintSchemaShim.cs (6)
382
&& deltaTicket.DocumentCollate.Value !=
Collation
.Unknown)
519
private static void SetCollate(DevMode devMode,
Collation
collation)
524
private static readonly IDictionary<DevModeCollate,
Collation
> dmCollateToQResolution = new Dictionary<DevModeCollate,
Collation
>(2) {
525
{DevModeCollate.DMCOLLATE_FALSE,
Collation
.Uncollated},
526
{DevModeCollate.DMCOLLATE_TRUE,
Collation
.Collated},
PrintConfig\PrtCap_Public_Simple.cs (5)
214
/// Gets a read-only collection of <see cref="
Collation
"/> that represents the printer's document collate capability.
219
public ReadOnlyCollection<
Collation
> CollationCapability
225
List<
Collation
> valueSet = new List<
Collation
>();
983
private ReadOnlyCollection<
Collation
> _collationCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
346
public Nullable<
Collation
> Collation
350
Collation
valueGot = GetEnumValueFromCacheOrXml<
Collation
>(
369
AddSetterEnumValueToCache<
Collation
>(
371
(value == null) ? (
Collation
)PrintSchema.EnumUnspecifiedValue : (
Collation
)value);
1548
_printTicket.DocumentCollate.Value = (
Collation
)cacheValue;