24 references to PhotoPrintingIntent
ReachFramework (24)
PrintConfig\PhotoPrintingIntent.cs (6)
40public PhotoPrintingIntent Value 65internal PhotoPrintingIntent _value; 127option._value = (PhotoPrintingIntent)enumValue; 239/// The value to set is not one of the standard <see cref="PhotoPrintingIntent"/>. 241public PhotoPrintingIntent Value 245return (PhotoPrintingIntent)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1764internal static PhotoPrintingIntent PhotoPrintingIntentEnumMin = PhotoPrintingIntent.Unknown; 1765internal static PhotoPrintingIntent PhotoPrintingIntentEnumMax = PhotoPrintingIntent.PhotoStandard; 2145internal static string[] PhotoIntentNames = Enum.GetNames(typeof(PhotoPrintingIntent)); 2146internal static int[] PhotoIntentEnums = (int[])(Array)Enum.GetValues<PhotoPrintingIntent>();
PrintConfig\PrtCap_Public_Simple.cs (5)
873/// Gets a read-only collection of <see cref="PhotoPrintingIntent"/> that represents the printer's 879public ReadOnlyCollection<PhotoPrintingIntent> PhotoPrintingIntentCapability 885List<PhotoPrintingIntent> valueSet = new List<PhotoPrintingIntent>(); 995private ReadOnlyCollection<PhotoPrintingIntent> _photoIntentCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1223public Nullable<PhotoPrintingIntent> PhotoPrintingIntent 1227PhotoPrintingIntent valueGot = GetEnumValueFromCacheOrXml<PhotoPrintingIntent>( 1246AddSetterEnumValueToCache<PhotoPrintingIntent>( 1248(value == null) ? (PhotoPrintingIntent)PrintSchema.EnumUnspecifiedValue : (PhotoPrintingIntent)value); 1586_printTicket.PagePhotoPrintingIntent.Value = (PhotoPrintingIntent)cacheValue;