30 references to Collation
ReachFramework (30)
PrintConfig\JobCollate.cs (6)
40
public
Collation
Value
65
internal
Collation
_value;
117
option._value = (
Collation
)enumValue;
267
/// The value to set is not one of the standard <see cref="
Collation
"/>.
269
public
Collation
Value
273
return (
Collation
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1536
internal static
Collation
CollationEnumMin =
Collation
.Unknown;
1537
internal static
Collation
CollationEnumMax =
Collation
.Uncollated;
1982
internal static string[] CollationNames = Enum.GetNames(typeof(
Collation
));
1983
internal static int[] CollationEnums = (int[])(Array)Enum.GetValues<
Collation
>();
PrintConfig\PrintSchemaShim.cs (6)
377
&& deltaTicket.DocumentCollate.Value !=
Collation
.Unknown)
514
private static void SetCollate(DevMode devMode,
Collation
collation)
519
private static readonly IDictionary<DevModeCollate,
Collation
> dmCollateToQResolution = new Dictionary<DevModeCollate,
Collation
>(2) {
520
{DevModeCollate.DMCOLLATE_FALSE,
Collation
.Uncollated},
521
{DevModeCollate.DMCOLLATE_TRUE,
Collation
.Collated},
PrintConfig\PrtCap_Public_Simple.cs (5)
207
/// Gets a read-only collection of <see cref="
Collation
"/> that represents the printer's document collate capability.
212
public ReadOnlyCollection<
Collation
> CollationCapability
218
List<
Collation
> valueSet = new List<
Collation
>();
976
private ReadOnlyCollection<
Collation
> _collationCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
338
public Nullable<
Collation
> Collation
342
Collation
valueGot = GetEnumValueFromCacheOrXml<
Collation
>(
361
AddSetterEnumValueToCache<
Collation
>(
363
(value == null) ? (
Collation
)PrintSchema.EnumUnspecifiedValue : (
Collation
)value);
1540
_printTicket.DocumentCollate.Value = (
Collation
)cacheValue;