public FontState( PdfFontInfo fontInfo, string fontFamily, string fontStyle, string fontWeight, int fontSize, int letterSpacing) : this(fontInfo, fontFamily, fontStyle, fontWeight, fontSize) { this.int_2 = letterSpacing; }
public FontState( PdfFontInfo fontInfo, string fontFamily, string fontStyle, string fontWeight, int fontSize) { this.pdfFontInfo_0 = fontInfo; this.string_1 = fontFamily; this.string_2 = fontStyle; this.string_3 = fontWeight; this.int_0 = fontSize; this.string_0 = fontInfo.FontLookup(fontFamily, fontStyle, fontWeight); this.ifontMetric_0 = fontInfo.GetMetricsFor(this.string_0); this.int_1 = 52; this.int_2 = 0; }
private bool method_0(string family, string style, string weight) { return(this.idictionary_1.ContainsKey(PdfFontInfo.CreateFontKey(family, style, weight))); }
public string FontLookup(string family, string style, string weight) { return(this.FontLookup(PdfFontInfo.CreateFontKey(family, style, weight))); }
public void AddFontProperties(string name, string family, string style, string weight) { this.idictionary_1.Add(PdfFontInfo.CreateFontKey(family, style, weight), name); }
public FontSetup(PdfFontInfo fontInfo, FontType proxyFontType) { this.pdfFontInfo_0 = fontInfo; this.method_1(); this.method_0(proxyFontType); }