12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class RichTextOptions : BaseFormControlOptions
- {
- public RichTextOptions()
- {
- this.IsRequired = false;
- }
- public int? Width { get; set; }
- public int? Height { get; set; }
- public IDictionary<string, object> HtmlAttributes { get; set; }
- /// <summary>
- /// 输入框默认值
- /// </summary>
- public string Value { get; set; }
- }
- }
|