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