31 references to DeviceFontSubstitution
ReachFramework (31)
PrintConfig\PageDeviceFont.cs (6)
42
public
DeviceFontSubstitution
Value
67
internal
DeviceFontSubstitution
_value;
128
option._value = (
DeviceFontSubstitution
)enumValue;
240
/// The value to set is not one of the standard <see cref="
DeviceFontSubstitution
"/>.
242
public
DeviceFontSubstitution
Value
246
return (
DeviceFontSubstitution
)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1542
internal static
DeviceFontSubstitution
DeviceFontSubstitutionEnumMin =
DeviceFontSubstitution
.Unknown;
1543
internal static
DeviceFontSubstitution
DeviceFontSubstitutionEnumMax =
DeviceFontSubstitution
.On;
2027
internal static string[] SubstitutionNames = Enum.GetNames(typeof(
DeviceFontSubstitution
));
2028
internal static int[] SubstitutionEnums = (int[])(Array)Enum.GetValues<
DeviceFontSubstitution
>();
PrintConfig\PrintSchemaShim.cs (7)
295
&& (deltaTicket.PageDeviceFontSubstitution.Value !=
DeviceFontSubstitution
.Unknown || deltaTicket.PageTrueTypeFontMode.Value != TrueTypeFontMode.Unknown))
1087
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.On;
1094
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.Off;
1101
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.Off;
1108
ticket.PageDeviceFontSubstitution.Value =
DeviceFontSubstitution
.Off;
1114
private static void SetTTOption(DevMode devMode,
DeviceFontSubstitution
fontSubstitution, TrueTypeFontMode trueTypeFontMode)
1116
if (fontSubstitution ==
DeviceFontSubstitution
.On
PrintConfig\PrtCap_Public_Simple.cs (5)
240
/// Gets a read-only collection of <see cref="
DeviceFontSubstitution
"/> that represents the printer's
246
public ReadOnlyCollection<
DeviceFontSubstitution
> DeviceFontSubstitutionCapability
252
List<
DeviceFontSubstitution
> valueSet = new List<
DeviceFontSubstitution
>();
978
private ReadOnlyCollection<
DeviceFontSubstitution
> _deviceFontCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
429
public Nullable<
DeviceFontSubstitution
> DeviceFontSubstitution
433
DeviceFontSubstitution
valueGot = GetEnumValueFromCacheOrXml<
DeviceFontSubstitution
>(
452
AddSetterEnumValueToCache<
DeviceFontSubstitution
>(
454
(value == null) ? (
DeviceFontSubstitution
)PrintSchema.EnumUnspecifiedValue : (
DeviceFontSubstitution
)value);
1546
(
DeviceFontSubstitution
)cacheValue;