34 references to TrueTypeFontMode
ReachFramework (34)
PrintConfig\PageTrueTypeFont.cs (6)
41public TrueTypeFontMode Value 66internal TrueTypeFontMode _value; 127option._value = (TrueTypeFontMode)enumValue; 240/// The value to set is not one of the standard <see cref="TrueTypeFontMode"/>. 242public TrueTypeFontMode Value 246return (TrueTypeFontMode)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1761internal static TrueTypeFontMode TrueTypeFontModeEnumMin = TrueTypeFontMode.Unknown; 1762internal static TrueTypeFontMode TrueTypeFontModeEnumMax = TrueTypeFontMode.RenderAsBitmap; 2128internal static string[] ModeNames = Enum.GetNames(typeof(TrueTypeFontMode)); 2129internal static int[] ModeEnums = (int[])(Array)Enum.GetValues<TrueTypeFontMode>();
PrintConfig\PrintSchemaShim.cs (10)
295&& (deltaTicket.PageDeviceFontSubstitution.Value != DeviceFontSubstitution.Unknown || deltaTicket.PageTrueTypeFontMode.Value != TrueTypeFontMode.Unknown)) 1086ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.Automatic; 1093ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.RenderAsBitmap; 1100ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.DownloadAsNativeTrueTypeFont; 1107ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.DownloadAsOutlineFont; 1114private static void SetTTOption(DevMode devMode, DeviceFontSubstitution fontSubstitution, TrueTypeFontMode trueTypeFontMode) 1117|| trueTypeFontMode == TrueTypeFontMode.Automatic) 1125case TrueTypeFontMode.DownloadAsNativeTrueTypeFont: 1130case TrueTypeFontMode.DownloadAsOutlineFont: 1135case TrueTypeFontMode.RenderAsBitmap:
PrintConfig\PrtCap_Public_Simple.cs (5)
939/// Gets a read-only collection of <see cref="TrueTypeFontMode"/> that represents the printer's 945public ReadOnlyCollection<TrueTypeFontMode> TrueTypeFontModeCapability 951List<TrueTypeFontMode> valueSet = new List<TrueTypeFontMode>(); 998private ReadOnlyCollection<TrueTypeFontMode> _ttFontCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1312public Nullable<TrueTypeFontMode> TrueTypeFontMode 1316TrueTypeFontMode valueGot = GetEnumValueFromCacheOrXml<TrueTypeFontMode>( 1335AddSetterEnumValueToCache<TrueTypeFontMode>( 1337(value == null) ? (TrueTypeFontMode)PrintSchema.EnumUnspecifiedValue : (TrueTypeFontMode)value); 1595_printTicket.PageTrueTypeFontMode.Value = (TrueTypeFontMode)cacheValue;