31 references to PageMediaType
ReachFramework (31)
PrintConfig\PageMediaType.cs (6)
51public PageMediaType Value 76internal PageMediaType _value; 136option._value = (PageMediaType)enumValue; 248/// The value to set is not one of the standard <see cref="PageMediaType"/>. 250public PageMediaType Value 254return (PageMediaType)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1743internal static PageMediaType PageMediaTypeEnumMin = PageMediaType.Unknown; 1744internal static PageMediaType PageMediaTypeEnumMax = PageMediaType.None; 2075internal static string[] MediaTypeNames = Enum.GetNames(typeof(PageMediaType)); 2076internal static int[] MediaTypeEnums = (int[])(Array)Enum.GetValues<PageMediaType>();
PrintConfig\PrintSchemaShim.cs (7)
337&& deltaTicket.PageMediaType.Value == PageMediaType.Unknown) 910private static void SetMediaType(DevMode devMode, PageMediaType pageMediaType) 915private static readonly IDictionary<uint, PageMediaType> dmMediaTypeToMediaType = new Dictionary<uint, PageMediaType>(3) { 916{DevModeMediaTypes.DMMEDIA_STANDARD, PageMediaType.Plain}, 917{DevModeMediaTypes.DMMEDIA_TRANSPARENCY, PageMediaType.Transparency}, 918{DevModeMediaTypes.DMMEDIA_GLOSSY, PageMediaType.PhotographicGlossy},
PrintConfig\PrtCap_Public_Simple.cs (5)
603/// Gets a read-only collection of <see cref="PageMediaType"/> that represents the printer's 609public ReadOnlyCollection<PageMediaType> PageMediaTypeCapability 615List<PageMediaType> valueSet = new List<PageMediaType>(); 995private ReadOnlyCollection<PageMediaType> _pageMediaTypeCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
845public Nullable<PageMediaType> PageMediaType 849PageMediaType valueGot = GetEnumValueFromCacheOrXml<PageMediaType>( 868AddSetterEnumValueToCache<PageMediaType>( 870(value == null) ? (PageMediaType)PrintSchema.EnumUnspecifiedValue : (PageMediaType)value); 1577_printTicket.PageMediaType.Value = (PageMediaType)cacheValue;