예제 #1
0
 public static void SetFontStyle(this HtmlStyleDictionary style, FontStyle fontStyle, IHtmlValueConverter converter)
 {
     if (fontStyle == FontStyle.Normal)
     {
         style.ClearValue("font-style");
     }
     else
     {
         style.SetValue("font-style", converter.ToFontStyleString(fontStyle));
     }
 }
예제 #2
0
 public static void SetFontStyle(this HtmlStyleDictionary style, FontStyle fontStyle, IHtmlValueConverter converter)
 {
     if (fontStyle == FontStyle.Normal)
     {
         style.ClearValue("font-style");
     }
     else
     {
         style.SetValue("font-style", converter.ToFontStyleString(fontStyle));
     }
 }