24 references to Stapling
ReachFramework (24)
PrintConfig\JobStaple.cs (6)
50public Stapling Value 75internal Stapling _value; 127option._value = (Stapling)enumValue; 276/// The value to set is not one of the standard <see cref="Stapling"/>. 278public Stapling Value 282return (Stapling)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1761internal static Stapling StaplingEnumMin = Stapling.Unknown; 1762internal static Stapling StaplingEnumMax = Stapling.None; 2020internal static string[] StaplingNames = Enum.GetNames(typeof(Stapling)); 2021internal static int[] StaplingEnums = (int[])(Array)Enum.GetValues<Stapling>();
PrintConfig\PrtCap_Public_Simple.cs (5)
913/// Gets a read-only collection of <see cref="Stapling"/> that represents the printer's job output stapling capability. 918public ReadOnlyCollection<Stapling> StaplingCapability 924List<Stapling> valueSet = new List<Stapling>(); 1003private ReadOnlyCollection<Stapling> _staplingCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1275public Nullable<Stapling> Stapling 1279Stapling valueGot = GetEnumValueFromCacheOrXml<Stapling>( 1298AddSetterEnumValueToCache<Stapling>( 1300(value == null) ? (Stapling)PrintSchema.EnumUnspecifiedValue : (Stapling)value); 1598_printTicket.JobStaple.Value = (Stapling)cacheValue;