Style.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : Style
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Web.Mobile;
  11. namespace System.Web.UI.MobileControls
  12. {
  13. public class Style //: IParserAttribute, ITemplateable, IStateManager,
  14. // ICloneable
  15. {
  16. public Style()
  17. {
  18. }
  19. [MonoTODO]
  20. internal BooleanOption Bold
  21. {
  22. get
  23. {
  24. throw new NotImplementedException();
  25. }
  26. set
  27. {
  28. throw new NotImplementedException();
  29. }
  30. }
  31. [MonoTODO]
  32. internal BooleanOption Italic
  33. {
  34. get
  35. {
  36. throw new NotImplementedException();
  37. }
  38. set
  39. {
  40. throw new NotImplementedException();
  41. }
  42. }
  43. [MonoTODO]
  44. internal string FontName
  45. {
  46. get
  47. {
  48. throw new NotImplementedException();
  49. }
  50. set
  51. {
  52. throw new NotImplementedException();
  53. }
  54. }
  55. [MonoTODO]
  56. internal FontSize FontSize
  57. {
  58. get
  59. {
  60. throw new NotImplementedException();
  61. }
  62. set
  63. {
  64. throw new NotImplementedException();
  65. }
  66. }
  67. }
  68. }