34 references to TrueTypeFontMode
ReachFramework (34)
PrintConfig\PageTrueTypeFont.cs (6)
40public TrueTypeFontMode Value 65internal TrueTypeFontMode _value; 128option._value = (TrueTypeFontMode)enumValue; 241/// The value to set is not one of the standard <see cref="TrueTypeFontMode"/>. 243public TrueTypeFontMode Value 247return (TrueTypeFontMode)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1758internal static TrueTypeFontMode TrueTypeFontModeEnumMin = TrueTypeFontMode.Unknown; 1759internal static TrueTypeFontMode TrueTypeFontModeEnumMax = TrueTypeFontMode.RenderAsBitmap; 2125internal static string[] ModeNames = Enum.GetNames(typeof(TrueTypeFontMode)); 2126internal static int[] ModeEnums = (int[])(Array)Enum.GetValues<TrueTypeFontMode>();
PrintConfig\PrintSchemaShim.cs (10)
294&& (deltaTicket.PageDeviceFontSubstitution.Value != DeviceFontSubstitution.Unknown || deltaTicket.PageTrueTypeFontMode.Value != TrueTypeFontMode.Unknown)) 1085ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.Automatic; 1092ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.RenderAsBitmap; 1099ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.DownloadAsNativeTrueTypeFont; 1106ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.DownloadAsOutlineFont; 1113private static void SetTTOption(DevMode devMode, DeviceFontSubstitution fontSubstitution, TrueTypeFontMode trueTypeFontMode) 1116|| trueTypeFontMode == TrueTypeFontMode.Automatic) 1124case TrueTypeFontMode.DownloadAsNativeTrueTypeFont: 1129case TrueTypeFontMode.DownloadAsOutlineFont: 1134case TrueTypeFontMode.RenderAsBitmap:
PrintConfig\PrtCap_Public_Simple.cs (5)
938/// Gets a read-only collection of <see cref="TrueTypeFontMode"/> that represents the printer's 944public ReadOnlyCollection<TrueTypeFontMode> TrueTypeFontModeCapability 950List<TrueTypeFontMode> valueSet = new List<TrueTypeFontMode>(); 997private ReadOnlyCollection<TrueTypeFontMode> _ttFontCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1311public Nullable<TrueTypeFontMode> TrueTypeFontMode 1315TrueTypeFontMode valueGot = GetEnumValueFromCacheOrXml<TrueTypeFontMode>( 1334AddSetterEnumValueToCache<TrueTypeFontMode>( 1336(value == null) ? (TrueTypeFontMode)PrintSchema.EnumUnspecifiedValue : (TrueTypeFontMode)value); 1594_printTicket.PageTrueTypeFontMode.Value = (TrueTypeFontMode)cacheValue;