public InfoWorksElement Type(string textToBeTyped)
 {
     Element.FillInWith(textToBeTyped);
     return(this);
 }
예제 #2
0
 public void FillText(string text)
 {
     element.FillInWith(text);
 }
 public UIElement Type(string text)
 {
     _element.FillInWith(text);
     return(this);
 }