34 references to TrueTypeFontMode
ReachFramework (34)
PrintConfig\PageTrueTypeFont.cs (6)
47public TrueTypeFontMode Value 72internal TrueTypeFontMode _value; 133option._value = (TrueTypeFontMode)enumValue; 246/// The value to set is not one of the standard <see cref="TrueTypeFontMode"/>. 248public TrueTypeFontMode Value 252return (TrueTypeFontMode)this[PrintSchemaTags.Framework.OptionNameProperty];
PrintConfig\PrintSchema.cs (6)
1764internal static TrueTypeFontMode TrueTypeFontModeEnumMin = TrueTypeFontMode.Unknown; 1765internal static TrueTypeFontMode TrueTypeFontModeEnumMax = TrueTypeFontMode.RenderAsBitmap; 2131internal static string[] ModeNames = Enum.GetNames(typeof(TrueTypeFontMode)); 2132internal static int[] ModeEnums = (int[])(Array)Enum.GetValues<TrueTypeFontMode>();
PrintConfig\PrintSchemaShim.cs (10)
299&& (deltaTicket.PageDeviceFontSubstitution.Value != DeviceFontSubstitution.Unknown || deltaTicket.PageTrueTypeFontMode.Value != TrueTypeFontMode.Unknown)) 1090ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.Automatic; 1097ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.RenderAsBitmap; 1104ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.DownloadAsNativeTrueTypeFont; 1111ticket.PageTrueTypeFontMode.Value = TrueTypeFontMode.DownloadAsOutlineFont; 1118private static void SetTTOption(DevMode devMode, DeviceFontSubstitution fontSubstitution, TrueTypeFontMode trueTypeFontMode) 1121|| trueTypeFontMode == TrueTypeFontMode.Automatic) 1129case TrueTypeFontMode.DownloadAsNativeTrueTypeFont: 1134case TrueTypeFontMode.DownloadAsOutlineFont: 1139case TrueTypeFontMode.RenderAsBitmap:
PrintConfig\PrtCap_Public_Simple.cs (5)
945/// Gets a read-only collection of <see cref="TrueTypeFontMode"/> that represents the printer's 951public ReadOnlyCollection<TrueTypeFontMode> TrueTypeFontModeCapability 957List<TrueTypeFontMode> valueSet = new List<TrueTypeFontMode>(); 1004private ReadOnlyCollection<TrueTypeFontMode> _ttFontCap;
PrintConfig\PrtTicket_Public_Simple.cs (7)
1319public Nullable<TrueTypeFontMode> TrueTypeFontMode 1323TrueTypeFontMode valueGot = GetEnumValueFromCacheOrXml<TrueTypeFontMode>( 1342AddSetterEnumValueToCache<TrueTypeFontMode>( 1344(value == null) ? (TrueTypeFontMode)PrintSchema.EnumUnspecifiedValue : (TrueTypeFontMode)value); 1602_printTicket.PageTrueTypeFontMode.Value = (TrueTypeFontMode)cacheValue;