Beispiel #1
0
 /// <summary>
 /// Returns an input icon component.
 /// </summary>
 /// <param name="htmlHelper">The HTML helper instance that this method extends.</param>
 /// <param name="textArea">The text area component of input icon.</param>
 /// <returns>An input icon component.</returns>
 public static YimaInputIcon YimaInputIcon(this HtmlHelper htmlHelper, TextAreaBase textArea)
 {
     return(new YimaInputIcon(htmlHelper, textArea));
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the component with the specified form group and text area.
 /// </summary>
 /// <param name="formGroup">The form group.</param>
 /// <param name="textArea">The text area.</param>
 public YimaFormInputIcon(IFormGroup formGroup, TextAreaBase textArea) : base(formGroup)
 {
     Init(textArea);
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the component with the specified HTML helper and text area.
 /// </summary>
 /// <param name="htmlHelper">The HTML helper.</param>
 /// <param name="textArea">The text area.</param>
 public YimaInputIcon(HtmlHelper htmlHelper, TextAreaBase textArea) : base(htmlHelper)
 {
     Init(textArea);
 }
Beispiel #4
0
 /// <summary>
 /// Initializes a new instance of the component with the specified HTML helper and text box.
 /// </summary>
 /// <param name="htmlHelper">The HTML helper.</param>
 /// <param name="textArea">The text area.</param>
 public YimaFormInputIcon(IForm form, TextAreaBase textArea) : base(form)
 {
     Init(textArea);
 }
Beispiel #5
0
 /// <summary>
 /// Returns an input icon component.
 /// </summary>
 /// <param name="formGroup">The form group instance that this method extends.</param>
 /// <param name="textArea">The text area component of input icon.</param>
 /// <returns>An input icon component.</returns>
 public static YimaFormInputIcon InputIcon(this IFormGroup formGroup, TextAreaBase textArea)
 {
     return(new YimaFormInputIcon(formGroup, textArea));
 }