31 references to PageMediaType
ReachFramework (31)
PrintConfig\PageMediaType.cs (6)
51
public
PageMediaType
Value
76
internal
PageMediaType
_value;
136
option._value = (
PageMediaType
)enumValue;
248
/// The value to set is not one of the standard <see cref="
PageMediaType
"/>.
250
public
PageMediaType
Value
254
return (
PageMediaType
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1743
internal static
PageMediaType
PageMediaTypeEnumMin =
PageMediaType
.Unknown;
1744
internal static
PageMediaType
PageMediaTypeEnumMax =
PageMediaType
.None;
2075
internal static string[] MediaTypeNames = Enum.GetNames(typeof(
PageMediaType
));
2076
internal static int[] MediaTypeEnums = (int[])(Array)Enum.GetValues<
PageMediaType
>();
PrintConfig\PrintSchemaShim.cs (7)
337
&& deltaTicket.PageMediaType.Value ==
PageMediaType
.Unknown)
910
private static void SetMediaType(DevMode devMode,
PageMediaType
pageMediaType)
915
private 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
609
public ReadOnlyCollection<
PageMediaType
> PageMediaTypeCapability
615
List<
PageMediaType
> valueSet = new List<
PageMediaType
>();
995
private ReadOnlyCollection<
PageMediaType
> _pageMediaTypeCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
845
public Nullable<
PageMediaType
> PageMediaType
849
PageMediaType
valueGot = GetEnumValueFromCacheOrXml<
PageMediaType
>(
868
AddSetterEnumValueToCache<
PageMediaType
>(
870
(value == null) ? (
PageMediaType
)PrintSchema.EnumUnspecifiedValue : (
PageMediaType
)value);
1577
_printTicket.PageMediaType.Value = (
PageMediaType
)cacheValue;