| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /**
- * 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();
- }
- }
- [MonoTODO]
- public MobileControl Control
- {
- get
- {
- throw new NotImplementedException();
- }
- set
- {
- throw new NotImplementedException();
- }
- }
- }
- }
|