24 references to PhotoPrintingIntent
ReachFramework (24)
PrintConfig\PhotoPrintingIntent.cs (6)
41public PhotoPrintingIntent Value 66internal PhotoPrintingIntent _value; 126option._value = (PhotoPrintingIntent)enumValue; 238/// The value to set is not one of the standard <see cref="PhotoPrintingIntent"/>. 240public PhotoPrintingIntent Value 244return (PhotoPrintingIntent)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1767internal static PhotoPrintingIntent PhotoPrintingIntentEnumMin = PhotoPrintingIntent.Unknown; 1768internal static PhotoPrintingIntent PhotoPrintingIntentEnumMax = PhotoPrintingIntent.PhotoStandard; 2148internal static string[] PhotoIntentNames = Enum.GetNames(typeof(PhotoPrintingIntent)); 2149internal static int[] PhotoIntentEnums = (int[])(Array)Enum.GetValues<PhotoPrintingIntent>();
PrintConfig\PrtCap_Public_Simple.cs (5)
874/// Gets a read-only collection of <see cref="PhotoPrintingIntent"/> that represents the printer's 880public ReadOnlyCollection<PhotoPrintingIntent> PhotoPrintingIntentCapability 886List<PhotoPrintingIntent> valueSet = new List<PhotoPrintingIntent>(); 996private ReadOnlyCollection<PhotoPrintingIntent> _photoIntentCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1224public Nullable<PhotoPrintingIntent> PhotoPrintingIntent 1228PhotoPrintingIntent valueGot = GetEnumValueFromCacheOrXml<PhotoPrintingIntent>( 1247AddSetterEnumValueToCache<PhotoPrintingIntent>( 1249(value == null) ? (PhotoPrintingIntent)PrintSchema.EnumUnspecifiedValue : (PhotoPrintingIntent)value); 1587_printTicket.PagePhotoPrintingIntent.Value = (PhotoPrintingIntent)cacheValue;