コード例 #1
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public Div Div(Attribute findBy)
 {
     return(ElementsSupport.Div(DomContainer, findBy, this));
 }
コード例 #2
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public TextField TextField(Attribute findBy)
 {
     return(ElementsSupport.TextField(DomContainer, findBy, this));
 }
コード例 #3
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public Span Span(Attribute findBy)
 {
     return(ElementsSupport.Span(DomContainer, findBy, this));
 }
コード例 #4
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public RadioButton RadioButton(Attribute findBy)
 {
     return(ElementsSupport.RadioButton(DomContainer, findBy, this));
 }
コード例 #5
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public SelectList SelectList(Attribute findBy)
 {
     return(ElementsSupport.SelectList(DomContainer, findBy, this));
 }
コード例 #6
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public CheckBox CheckBox(Attribute findBy)
 {
     return(ElementsSupport.CheckBox(DomContainer, findBy, this));
 }
コード例 #7
0
ファイル: Document.cs プロジェクト: teknologika/ITiN
 public Element Element(Attribute findBy)
 {
     return(ElementsSupport.Element(DomContainer, findBy, this));
 }
コード例 #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)));
 }