2
0

Style.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. [MonoTODO]
  68. public MobileControl Control
  69. {
  70. get
  71. {
  72. throw new NotImplementedException();
  73. }
  74. set
  75. {
  76. throw new NotImplementedException();
  77. }
  78. }
  79. }
  80. }