31 references to DeviceFontSubstitution
ReachFramework (31)
PrintConfig\PageDeviceFont.cs (6)
48
public
DeviceFontSubstitution
Value
73
internal
DeviceFontSubstitution
_value;
134
option._value = (
DeviceFontSubstitution
)enumValue;
246
/// The value to set is not one of the standard <see cref="
DeviceFontSubstitution
"/>.
248
public
DeviceFontSubstitution
Value
252
return (
DeviceFontSubstitution
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1545
internal static
DeviceFontSubstitution
DeviceFontSubstitutionEnumMin =
DeviceFontSubstitution
.Unknown;
1546
internal static
DeviceFontSubstitution
DeviceFontSubstitutionEnumMax =
DeviceFontSubstitution
.On;
2030
internal static string[] SubstitutionNames = Enum.GetNames(typeof(
DeviceFontSubstitution
));
2031
internal static int[] SubstitutionEnums = (int[])(Array)Enum.GetValues<
DeviceFontSubstitution
>();
PrintConfig\PrintSchemaShim.cs (7)
299
&& (deltaTicket.PageDeviceFontSubstitution.Value !=
DeviceFontSubstitution
.Unknown || deltaTicket.PageTrueTypeFontMode.Value != TrueTypeFontMode.Unknown))
1091
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.On;
1098
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.Off;
1105
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.Off;
1112
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.Off;
1118
private static void SetTTOption(DevMode devMode,
DeviceFontSubstitution
fontSubstitution, TrueTypeFontMode trueTypeFontMode)
1120
if (fontSubstitution ==
DeviceFontSubstitution
.On
PrintConfig\PrtCap_Public_Simple.cs (5)
246
/// Gets a read-only collection of <see cref="
DeviceFontSubstitution
"/> that represents the printer's
252
public ReadOnlyCollection<
DeviceFontSubstitution
> DeviceFontSubstitutionCapability
258
List<
DeviceFontSubstitution
> valueSet = new List<
DeviceFontSubstitution
>();
984
private ReadOnlyCollection<
DeviceFontSubstitution
> _deviceFontCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
436
public Nullable<
DeviceFontSubstitution
> DeviceFontSubstitution
440
DeviceFontSubstitution
valueGot = GetEnumValueFromCacheOrXml<
DeviceFontSubstitution
>(
459
AddSetterEnumValueToCache<
DeviceFontSubstitution
>(
461
(value == null) ? (
DeviceFontSubstitution
)PrintSchema.EnumUnspecifiedValue : (
DeviceFontSubstitution
)value);
1553
(
DeviceFontSubstitution
)cacheValue;