Exemplo n.º 1
0
 public void Add(IHtmlOptionsGroupElement element, IHtmlElement before = null)
 {
     _parent.InsertBefore(element, before);
 }
Exemplo n.º 2
0
 public void Add(IHtmlOptionsGroupElement element, IHtmlElement before = null)
 {
     _parent.InsertBefore(element, before);
 }
Exemplo n.º 3
0
 public void AddOption(IHtmlOptionsGroupElement element, IHtmlElement before = null)
 {
     Options.Add(element, before);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Adds the element to the options collection.
 /// </summary>
 /// <param name="element">The group element to add.</param>
 /// <param name="before">The following element.</param>
 public void AddOption(IHtmlOptionsGroupElement element, IHtmlElement before = null)
 {
     Options.Add(element, before);
 }