30 references to Collation
ReachFramework (30)
PrintConfig\JobCollate.cs (6)
47public Collation Value 72internal Collation _value; 124option._value = (Collation)enumValue; 272/// The value to set is not one of the standard <see cref="Collation"/>. 274public Collation Value 278return (Collation)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1542internal static Collation CollationEnumMin = Collation.Unknown; 1543internal static Collation CollationEnumMax = Collation.Uncollated; 1988internal static string[] CollationNames = Enum.GetNames(typeof(Collation)); 1989internal static int[] CollationEnums = (int[])(Array)Enum.GetValues<Collation>();
PrintConfig\PrintSchemaShim.cs (6)
382&& deltaTicket.DocumentCollate.Value != Collation.Unknown) 519private static void SetCollate(DevMode devMode, Collation collation) 524private 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. 219public ReadOnlyCollection<Collation> CollationCapability 225List<Collation> valueSet = new List<Collation>(); 983private ReadOnlyCollection<Collation> _collationCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
346public Nullable<Collation> Collation 350Collation valueGot = GetEnumValueFromCacheOrXml<Collation>( 369AddSetterEnumValueToCache<Collation>( 371(value == null) ? (Collation)PrintSchema.EnumUnspecifiedValue : (Collation)value); 1548_printTicket.DocumentCollate.Value = (Collation)cacheValue;