30 references to Collation
ReachFramework (30)
PrintConfig\JobCollate.cs (6)
41public Collation Value 66internal Collation _value; 118option._value = (Collation)enumValue; 266/// The value to set is not one of the standard <see cref="Collation"/>. 268public Collation Value 272return (Collation)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1539internal static Collation CollationEnumMin = Collation.Unknown; 1540internal static Collation CollationEnumMax = Collation.Uncollated; 1985internal static string[] CollationNames = Enum.GetNames(typeof(Collation)); 1986internal static int[] CollationEnums = (int[])(Array)Enum.GetValues<Collation>();
PrintConfig\PrintSchemaShim.cs (6)
378&& deltaTicket.DocumentCollate.Value != Collation.Unknown) 515private static void SetCollate(DevMode devMode, Collation collation) 520private 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. 213public ReadOnlyCollection<Collation> CollationCapability 219List<Collation> valueSet = new List<Collation>(); 977private ReadOnlyCollection<Collation> _collationCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
339public Nullable<Collation> Collation 343Collation valueGot = GetEnumValueFromCacheOrXml<Collation>( 362AddSetterEnumValueToCache<Collation>( 364(value == null) ? (Collation)PrintSchema.EnumUnspecifiedValue : (Collation)value); 1541_printTicket.DocumentCollate.Value = (Collation)cacheValue;