24 references to Stapling
ReachFramework (24)
PrintConfig\JobStaple.cs (6)
42public Stapling Value 67internal Stapling _value; 119option._value = (Stapling)enumValue; 270/// The value to set is not one of the standard <see cref="Stapling"/>. 272public Stapling Value 276return (Stapling)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1755internal static Stapling StaplingEnumMin = Stapling.Unknown; 1756internal static Stapling StaplingEnumMax = Stapling.None; 2014internal static string[] StaplingNames = Enum.GetNames(typeof(Stapling)); 2015internal static int[] StaplingEnums = (int[])(Array)Enum.GetValues<Stapling>();
PrintConfig\PrtCap_Public_Simple.cs (5)
906/// Gets a read-only collection of <see cref="Stapling"/> that represents the printer's job output stapling capability. 911public ReadOnlyCollection<Stapling> StaplingCapability 917List<Stapling> valueSet = new List<Stapling>(); 996private ReadOnlyCollection<Stapling> _staplingCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1267public Nullable<Stapling> Stapling 1271Stapling valueGot = GetEnumValueFromCacheOrXml<Stapling>( 1290AddSetterEnumValueToCache<Stapling>( 1292(value == null) ? (Stapling)PrintSchema.EnumUnspecifiedValue : (Stapling)value); 1590_printTicket.JobStaple.Value = (Stapling)cacheValue;