30 references to Collation
ReachFramework (30)
PrintConfig\JobCollate.cs (6)
40public Collation Value 65internal Collation _value; 117option._value = (Collation)enumValue; 267/// The value to set is not one of the standard <see cref="Collation"/>. 269public Collation Value 273return (Collation)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1536internal static Collation CollationEnumMin = Collation.Unknown; 1537internal static Collation CollationEnumMax = Collation.Uncollated; 1982internal static string[] CollationNames = Enum.GetNames(typeof(Collation)); 1983internal static int[] CollationEnums = (int[])(Array)Enum.GetValues<Collation>();
PrintConfig\PrintSchemaShim.cs (6)
377&& deltaTicket.DocumentCollate.Value != Collation.Unknown) 514private static void SetCollate(DevMode devMode, Collation collation) 519private 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. 212public ReadOnlyCollection<Collation> CollationCapability 218List<Collation> valueSet = new List<Collation>(); 976private ReadOnlyCollection<Collation> _collationCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
338public Nullable<Collation> Collation 342Collation valueGot = GetEnumValueFromCacheOrXml<Collation>( 361AddSetterEnumValueToCache<Collation>( 363(value == null) ? (Collation)PrintSchema.EnumUnspecifiedValue : (Collation)value); 1540_printTicket.DocumentCollate.Value = (Collation)cacheValue;