30 references to Collation
ReachFramework (30)
PrintConfig\JobCollate.cs (6)
41
public
Collation
Value
66
internal
Collation
_value;
118
option._value = (
Collation
)enumValue;
266
/// The value to set is not one of the standard <see cref="
Collation
"/>.
268
public
Collation
Value
272
return (
Collation
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1539
internal static
Collation
CollationEnumMin =
Collation
.Unknown;
1540
internal static
Collation
CollationEnumMax =
Collation
.Uncollated;
1985
internal static string[] CollationNames = Enum.GetNames(typeof(
Collation
));
1986
internal static int[] CollationEnums = (int[])(Array)Enum.GetValues<
Collation
>();
PrintConfig\PrintSchemaShim.cs (6)
378
&& deltaTicket.DocumentCollate.Value !=
Collation
.Unknown)
515
private static void SetCollate(DevMode devMode,
Collation
collation)
520
private static readonly IDictionary<DevModeCollate,
Collation
> dmCollateToQResolution = new Dictionary<DevModeCollate,
Collation
>(2) {
521
{DevModeCollate.DMCOLLATE_FALSE,
Collation
.Uncollated},
522
{DevModeCollate.DMCOLLATE_TRUE,
Collation
.Collated},
PrintConfig\PrtCap_Public_Simple.cs (5)
208
/// Gets a read-only collection of <see cref="
Collation
"/> that represents the printer's document collate capability.
213
public ReadOnlyCollection<
Collation
> CollationCapability
219
List<
Collation
> valueSet = new List<
Collation
>();
977
private ReadOnlyCollection<
Collation
> _collationCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
339
public Nullable<
Collation
> Collation
343
Collation
valueGot = GetEnumValueFromCacheOrXml<
Collation
>(
362
AddSetterEnumValueToCache<
Collation
>(
364
(value == null) ? (
Collation
)PrintSchema.EnumUnspecifiedValue : (
Collation
)value);
1541
_printTicket.DocumentCollate.Value = (
Collation
)cacheValue;