Example #1
0
 public int PasteText(String windowName,
     String objName, int postion)
 {
     Text text = new Text(this);
     try
     {
         return text.PasteText(windowName, objName, postion);
     }
     finally
     {
         text = null;
     }
 }
Example #2
0
 public int VerifyPartialText(String windowName,
     String objName, string value)
 {
     Text text = new Text(this);
     try
     {
         return text.VerifyPartialText(windowName, objName, value);
     }
     finally
     {
         text = null;
     }
 }
Example #3
0
 public int InsertText(String windowName,
     String objName, int postion, string value)
 {
     Text text = new Text(this);
     try
     {
         return text.InsertText(windowName, objName, postion, value);
     }
     finally
     {
         text = null;
     }
 }
Example #4
0
 public int IsTextStateEnabled(String windowName, String objName)
 {
     Text text = new Text(this);
     try
     {
         return text.IsTextStateEnabled(windowName, objName);
     }
     finally
     {
         text = null;
     }
 }
Example #5
0
 public int GetCharCount(String windowName,
     String objName)
 {
     Text text = new Text(this);
     try
     {
         return text.GetCharCount(windowName, objName);
     }
     finally
     {
         text = null;
     }
 }
Example #6
0
 public int DeleteText(String windowName,
     String objName, int start, int end = -1)
 {
     Text text = new Text(this);
     try
     {
         return text.DeleteText(windowName, objName, start, end);
     }
     finally
     {
         text = null;
     }
 }
Example #7
0
 public int AppendText(String windowName,
     String objName, string value)
 {
     Text text = new Text(this);
     try
     {
         return text.AppendText(windowName, objName, value);
     }
     finally
     {
         text = null;
     }
 }
Example #8
0
 public String GetTextValue(String windowName, String objName,
     int startPos = 0, int endPos = 0)
 {
     Text text = new Text(this);
     try
     {
         return text.GetTextValue(windowName, objName, startPos, endPos);
     }
     finally
     {
         text = null;
     }
 }
Example #9
0
 public int SetTextValue(String windowName, String objName, String value)
 {
     Text text = new Text(this);
     try
     {
         return text.SetTextValue(windowName, objName, value);
     }
     finally
     {
         text = null;
     }
 }