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