31 references to PageMediaType
ReachFramework (31)
PrintConfig\PageMediaType.cs (6)
44
public
PageMediaType
Value
69
internal
PageMediaType
_value;
129
option._value = (
PageMediaType
)enumValue;
241
/// The value to set is not one of the standard <see cref="
PageMediaType
"/>.
243
public
PageMediaType
Value
247
return (
PageMediaType
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1740
internal static
PageMediaType
PageMediaTypeEnumMin =
PageMediaType
.Unknown;
1741
internal static
PageMediaType
PageMediaTypeEnumMax =
PageMediaType
.None;
2072
internal static string[] MediaTypeNames = Enum.GetNames(typeof(
PageMediaType
));
2073
internal static int[] MediaTypeEnums = (int[])(Array)Enum.GetValues<
PageMediaType
>();
PrintConfig\PrintSchemaShim.cs (7)
333
&& deltaTicket.PageMediaType.Value ==
PageMediaType
.Unknown)
906
private static void SetMediaType(DevMode devMode,
PageMediaType
pageMediaType)
911
private 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
603
public ReadOnlyCollection<
PageMediaType
> PageMediaTypeCapability
609
List<
PageMediaType
> valueSet = new List<
PageMediaType
>();
989
private ReadOnlyCollection<
PageMediaType
> _pageMediaTypeCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
838
public Nullable<
PageMediaType
> PageMediaType
842
PageMediaType
valueGot = GetEnumValueFromCacheOrXml<
PageMediaType
>(
861
AddSetterEnumValueToCache<
PageMediaType
>(
863
(value == null) ? (
PageMediaType
)PrintSchema.EnumUnspecifiedValue : (
PageMediaType
)value);
1570
_printTicket.PageMediaType.Value = (
PageMediaType
)cacheValue;