Ejemplo n.º 1
0
 public Div Div(Attribute findBy)
 {
     return(ElementsSupport.Div(DomContainer, findBy, this));
 }
Ejemplo n.º 2
0
 public TextField TextField(Attribute findBy)
 {
     return(ElementsSupport.TextField(DomContainer, findBy, this));
 }
Ejemplo n.º 3
0
 public Span Span(Attribute findBy)
 {
     return(ElementsSupport.Span(DomContainer, findBy, this));
 }
Ejemplo n.º 4
0
 public RadioButton RadioButton(Attribute findBy)
 {
     return(ElementsSupport.RadioButton(DomContainer, findBy, this));
 }
Ejemplo n.º 5
0
 public SelectList SelectList(Attribute findBy)
 {
     return(ElementsSupport.SelectList(DomContainer, findBy, this));
 }
Ejemplo n.º 6
0
 public CheckBox CheckBox(Attribute findBy)
 {
     return(ElementsSupport.CheckBox(DomContainer, findBy, this));
 }
Ejemplo n.º 7
0
 public Element Element(Attribute findBy)
 {
     return(ElementsSupport.Element(DomContainer, findBy, this));
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Returns the <see cref="Options" /> which matches the specified <paramref name="findBy"/>.
 /// </summary>
 /// <param name="findBy">The find by to use.</param>
 /// <returns></returns>
 public Option Option(Attribute findBy)
 {
     return(ElementsSupport.Option(DomContainer, findBy, new ElementCollection(this)));
 }