31 references to PageMediaType
ReachFramework (31)
PrintConfig\PageMediaType.cs (6)
43
public
PageMediaType
Value
68
internal
PageMediaType
_value;
130
option._value = (
PageMediaType
)enumValue;
242
/// The value to set is not one of the standard <see cref="
PageMediaType
"/>.
244
public
PageMediaType
Value
248
return (
PageMediaType
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1737
internal static
PageMediaType
PageMediaTypeEnumMin =
PageMediaType
.Unknown;
1738
internal static
PageMediaType
PageMediaTypeEnumMax =
PageMediaType
.None;
2069
internal static string[] MediaTypeNames = Enum.GetNames(typeof(
PageMediaType
));
2070
internal static int[] MediaTypeEnums = (int[])(Array)Enum.GetValues<
PageMediaType
>();
PrintConfig\PrintSchemaShim.cs (7)
332
&& deltaTicket.PageMediaType.Value ==
PageMediaType
.Unknown)
905
private static void SetMediaType(DevMode devMode,
PageMediaType
pageMediaType)
910
private 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
602
public ReadOnlyCollection<
PageMediaType
> PageMediaTypeCapability
608
List<
PageMediaType
> valueSet = new List<
PageMediaType
>();
988
private ReadOnlyCollection<
PageMediaType
> _pageMediaTypeCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
837
public Nullable<
PageMediaType
> PageMediaType
841
PageMediaType
valueGot = GetEnumValueFromCacheOrXml<
PageMediaType
>(
860
AddSetterEnumValueToCache<
PageMediaType
>(
862
(value == null) ? (
PageMediaType
)PrintSchema.EnumUnspecifiedValue : (
PageMediaType
)value);
1569
_printTicket.PageMediaType.Value = (
PageMediaType
)cacheValue;