/** * Project : Mono * Namespace : System.Web.UI.MobileControls * Class : Style * Author : Gaurav Vaish * * Copyright : 2003 with Gaurav Vaish, and with * Ximian Inc */ using System.Web.Mobile; namespace System.Web.UI.MobileControls { public class Style //: IParserAttribute, ITemplateable, IStateManager, // ICloneable { public Style() { } [MonoTODO] internal BooleanOption Bold { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } [MonoTODO] internal BooleanOption Italic { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } [MonoTODO] internal string FontName { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } [MonoTODO] internal FontSize FontSize { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } }