24 references to PagesPerSheetDirection
ReachFramework (24)
PrintConfig\DocumentNUp.cs (6)
318public PagesPerSheetDirection Value 343internal PagesPerSheetDirection _value; 403option._value = (PagesPerSheetDirection)enumValue; 624/// The value to set is not one of the standard <see cref="PagesPerSheetDirection"/>. 626public PagesPerSheetDirection Value 630return (PagesPerSheetDirection)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1746internal static PagesPerSheetDirection PagesPerSheetDirectionEnumMin = PagesPerSheetDirection.Unknown; 1747internal static PagesPerSheetDirection PagesPerSheetDirectionEnumMax = PagesPerSheetDirection.TopLeft; 2010internal static string[] DirectionNames = Enum.GetNames(typeof(PagesPerSheetDirection)); 2011internal static int[] DirectionEnums = (int[])(Array)Enum.GetValues<PagesPerSheetDirection>();
PrintConfig\PrtCap_Public_Simple.cs (5)
844/// Gets a read-only collection of <see cref="PagesPerSheetDirection"/> that represents the printer's 851public ReadOnlyCollection<PagesPerSheetDirection> PagesPerSheetDirectionCapability 857List<PagesPerSheetDirection> valueSet = new List<PagesPerSheetDirection>(); 1001private ReadOnlyCollection<PagesPerSheetDirection> _pagesPerSheetDirectionCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1187public Nullable<PagesPerSheetDirection> PagesPerSheetDirection 1191PagesPerSheetDirection valueGot = GetEnumValueFromCacheOrXml<PagesPerSheetDirection>( 1210AddSetterEnumValueToCache<PagesPerSheetDirection>( 1212(value == null) ? (PagesPerSheetDirection)PrintSchema.EnumUnspecifiedValue : (PagesPerSheetDirection)value); 1590(PagesPerSheetDirection)cacheValue;