24 references to Stapling
ReachFramework (24)
PrintConfig\JobStaple.cs (6)
43public Stapling Value 68internal Stapling _value; 120option._value = (Stapling)enumValue; 269/// The value to set is not one of the standard <see cref="Stapling"/>. 271public Stapling Value 275return (Stapling)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1758internal static Stapling StaplingEnumMin = Stapling.Unknown; 1759internal static Stapling StaplingEnumMax = Stapling.None; 2017internal static string[] StaplingNames = Enum.GetNames(typeof(Stapling)); 2018internal static int[] StaplingEnums = (int[])(Array)Enum.GetValues<Stapling>();
PrintConfig\PrtCap_Public_Simple.cs (5)
907/// Gets a read-only collection of <see cref="Stapling"/> that represents the printer's job output stapling capability. 912public ReadOnlyCollection<Stapling> StaplingCapability 918List<Stapling> valueSet = new List<Stapling>(); 997private ReadOnlyCollection<Stapling> _staplingCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1268public Nullable<Stapling> Stapling 1272Stapling valueGot = GetEnumValueFromCacheOrXml<Stapling>( 1291AddSetterEnumValueToCache<Stapling>( 1293(value == null) ? (Stapling)PrintSchema.EnumUnspecifiedValue : (Stapling)value); 1591_printTicket.JobStaple.Value = (Stapling)cacheValue;