RichTextOptions.cs 558 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class RichTextOptions : BaseFormControlOptions
  8. {
  9. public RichTextOptions()
  10. {
  11. this.IsRequired = false;
  12. }
  13. public int? Width { get; set; }
  14. public int? Height { get; set; }
  15. public IDictionary<string, object> HtmlAttributes { get; set; }
  16. /// <summary>
  17. /// 输入框默认值
  18. /// </summary>
  19. public string Value { get; set; }
  20. }
  21. }