The FontInfo class provides a subset of the
functionality of the
System.Web.UI.WebControls.FontInfo, which
represents the font specifications supported by mobile devices. These
include the ability to specify font family, italic and bold styles,
and the font size (which only supports the limited set of values
provided by the FontSize enumeration).
public class FontInfo {
// Public Instance Properties
public BooleanOption Bold{set; get; }
public BooleanOption Italic{set; get; }
public string Name{set; get; }
public FontSize Size{set; get; }
// Public Instance Methods
public override string ToString( ); // overrides object
}