31 references to PageMediaType
ReachFramework (31)
PrintConfig\PageMediaType.cs (6)
44public PageMediaType Value 69internal PageMediaType _value; 129option._value = (PageMediaType)enumValue; 241/// The value to set is not one of the standard <see cref="PageMediaType"/>. 243public PageMediaType Value 247return (PageMediaType)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1740internal static PageMediaType PageMediaTypeEnumMin = PageMediaType.Unknown; 1741internal static PageMediaType PageMediaTypeEnumMax = PageMediaType.None; 2072internal static string[] MediaTypeNames = Enum.GetNames(typeof(PageMediaType)); 2073internal static int[] MediaTypeEnums = (int[])(Array)Enum.GetValues<PageMediaType>();
PrintConfig\PrintSchemaShim.cs (7)
333&& deltaTicket.PageMediaType.Value == PageMediaType.Unknown) 906private static void SetMediaType(DevMode devMode, PageMediaType pageMediaType) 911private static readonly IDictionary<uint, PageMediaType> dmMediaTypeToMediaType = new Dictionary<uint, PageMediaType>(3) { 912{DevModeMediaTypes.DMMEDIA_STANDARD, PageMediaType.Plain}, 913{DevModeMediaTypes.DMMEDIA_TRANSPARENCY, PageMediaType.Transparency}, 914{DevModeMediaTypes.DMMEDIA_GLOSSY, PageMediaType.PhotographicGlossy},
PrintConfig\PrtCap_Public_Simple.cs (5)
597/// Gets a read-only collection of <see cref="PageMediaType"/> that represents the printer's 603public ReadOnlyCollection<PageMediaType> PageMediaTypeCapability 609List<PageMediaType> valueSet = new List<PageMediaType>(); 989private ReadOnlyCollection<PageMediaType> _pageMediaTypeCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
838public Nullable<PageMediaType> PageMediaType 842PageMediaType valueGot = GetEnumValueFromCacheOrXml<PageMediaType>( 861AddSetterEnumValueToCache<PageMediaType>( 863(value == null) ? (PageMediaType)PrintSchema.EnumUnspecifiedValue : (PageMediaType)value); 1570_printTicket.PageMediaType.Value = (PageMediaType)cacheValue;