24 references to PhotoPrintingIntent
ReachFramework (24)
PrintConfig\PhotoPrintingIntent.cs (6)
47public PhotoPrintingIntent Value 72internal PhotoPrintingIntent _value; 132option._value = (PhotoPrintingIntent)enumValue; 244/// The value to set is not one of the standard <see cref="PhotoPrintingIntent"/>. 246public PhotoPrintingIntent Value 250return (PhotoPrintingIntent)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1770internal static PhotoPrintingIntent PhotoPrintingIntentEnumMin = PhotoPrintingIntent.Unknown; 1771internal static PhotoPrintingIntent PhotoPrintingIntentEnumMax = PhotoPrintingIntent.PhotoStandard; 2151internal static string[] PhotoIntentNames = Enum.GetNames(typeof(PhotoPrintingIntent)); 2152internal static int[] PhotoIntentEnums = (int[])(Array)Enum.GetValues<PhotoPrintingIntent>();
PrintConfig\PrtCap_Public_Simple.cs (5)
880/// Gets a read-only collection of <see cref="PhotoPrintingIntent"/> that represents the printer's 886public ReadOnlyCollection<PhotoPrintingIntent> PhotoPrintingIntentCapability 892List<PhotoPrintingIntent> valueSet = new List<PhotoPrintingIntent>(); 1002private ReadOnlyCollection<PhotoPrintingIntent> _photoIntentCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1231public Nullable<PhotoPrintingIntent> PhotoPrintingIntent 1235PhotoPrintingIntent valueGot = GetEnumValueFromCacheOrXml<PhotoPrintingIntent>( 1254AddSetterEnumValueToCache<PhotoPrintingIntent>( 1256(value == null) ? (PhotoPrintingIntent)PrintSchema.EnumUnspecifiedValue : (PhotoPrintingIntent)value); 1594_printTicket.PagePhotoPrintingIntent.Value = (PhotoPrintingIntent)cacheValue;