31 references to PageMediaType
ReachFramework (31)
PrintConfig\PageMediaType.cs (6)
43public PageMediaType Value 68internal PageMediaType _value; 130option._value = (PageMediaType)enumValue; 242/// The value to set is not one of the standard <see cref="PageMediaType"/>. 244public PageMediaType Value 248return (PageMediaType)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1737internal static PageMediaType PageMediaTypeEnumMin = PageMediaType.Unknown; 1738internal static PageMediaType PageMediaTypeEnumMax = PageMediaType.None; 2069internal static string[] MediaTypeNames = Enum.GetNames(typeof(PageMediaType)); 2070internal static int[] MediaTypeEnums = (int[])(Array)Enum.GetValues<PageMediaType>();
PrintConfig\PrintSchemaShim.cs (7)
332&& deltaTicket.PageMediaType.Value == PageMediaType.Unknown) 905private static void SetMediaType(DevMode devMode, PageMediaType pageMediaType) 910private static readonly IDictionary<uint, PageMediaType> dmMediaTypeToMediaType = new Dictionary<uint, PageMediaType>(3) { 911{DevModeMediaTypes.DMMEDIA_STANDARD, PageMediaType.Plain}, 912{DevModeMediaTypes.DMMEDIA_TRANSPARENCY, PageMediaType.Transparency}, 913{DevModeMediaTypes.DMMEDIA_GLOSSY, PageMediaType.PhotographicGlossy},
PrintConfig\PrtCap_Public_Simple.cs (5)
596/// Gets a read-only collection of <see cref="PageMediaType"/> that represents the printer's 602public ReadOnlyCollection<PageMediaType> PageMediaTypeCapability 608List<PageMediaType> valueSet = new List<PageMediaType>(); 988private ReadOnlyCollection<PageMediaType> _pageMediaTypeCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
837public Nullable<PageMediaType> PageMediaType 841PageMediaType valueGot = GetEnumValueFromCacheOrXml<PageMediaType>( 860AddSetterEnumValueToCache<PageMediaType>( 862(value == null) ? (PageMediaType)PrintSchema.EnumUnspecifiedValue : (PageMediaType)value); 1569_printTicket.PageMediaType.Value = (PageMediaType)cacheValue;